diff --git a/src/Plugin/views/filter/NodeIsIslandora.php b/src/Plugin/views/filter/NodeIsIslandora.php
index a94da147..a1f1585c 100644
--- a/src/Plugin/views/filter/NodeIsIslandora.php
+++ b/src/Plugin/views/filter/NodeIsIslandora.php
@@ -98,7 +98,7 @@ class NodeIsIslandora extends FilterPluginBase implements ContainerFactoryPlugin
     $form['info'] = [
       '#type' => 'item',
       '#title' => 'Information',
-      '#description' => t("Configured Islandora bundles: {$types_list} "),
+      '#description' => t("Configured Islandora bundles: @types", ['@types' => $types_list]),
     ];
     $form['negated'] = [
       '#type' => 'checkbox',
@@ -140,5 +140,6 @@ class NodeIsIslandora extends FilterPluginBase implements ContainerFactoryPlugin
     $node_table_alias = $this->query->addTable('node', $this->relationship, $join);
     $this->query->addWhere($this->options['group'], "$node_table_alias.type", $types, $condition);
   }
+
 }