From 9ccb418a1e0ef150842f614ac9378eceba309fd6 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Fri, 21 Feb 2020 16:19:14 +0000 Subject: [PATCH] --- ayanova/src/views/ay-data-list-view.vue | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) 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; }