diff --git a/ayanova/src/views/ay-data-list-view.vue b/ayanova/src/views/ay-data-list-view.vue
index c96c56bd..6514dd1b 100644
--- a/ayanova/src/views/ay-data-list-view.vue
+++ b/ayanova/src/views/ay-data-list-view.vue
@@ -193,13 +193,18 @@
prepend-icon="fa-filter"
>
fa-plus
@@ -488,7 +493,7 @@ export default {
filterItem.op = item.tempFilterOperator;
filterItem.value = item.tempFilterValue;
//only add if there is both an op and a value
- //above here for tokens that isn't a restriction but
+ //above here for tokens that isn't a restriction but
//after passing through those conditions were at a point where there MUST be both
if (filterItem.op && filterItem.value) {
//display
@@ -515,12 +520,12 @@ export default {
}
var opDisplay = window.$gz._.find(
- this.pickLists.dateFilterOperators,
+ this.pickLists.stringFilterOperators,
{
id: filterItem.op
}
).name;
- filterItem.display = opDisplay + " " + valueDisplay;
+ filterItem.display = opDisplay + ' "' + valueDisplay + '"';
filterItemSet = true;
}