From 5a6fe861afbd7615d72d6104b6f6e516723d3df4 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Fri, 21 Feb 2020 18:35:08 +0000 Subject: [PATCH] --- ayanova/src/views/ay-data-list-view.vue | 33 ++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/ayanova/src/views/ay-data-list-view.vue b/ayanova/src/views/ay-data-list-view.vue index 8c7f4ce4..ae1b0685 100644 --- a/ayanova/src/views/ay-data-list-view.vue +++ b/ayanova/src/views/ay-data-list-view.vue @@ -331,7 +331,29 @@ > -
TAG BUILDER
+
+ + + + + fa-plus +
ENUM BUILDER @@ -1148,6 +1170,11 @@ function initDataObject(vm) { tempFilterToken: null, tempFilterValue: null }; + + //If it's a tag and it's not been set yet it needs to have an empty array to stat with for the picker + if (o.uiFieldDataType == 9 && o.tempFilterValue == null) { + o.tempFilterValue = []; + } ret.push(o); } @@ -1177,6 +1204,10 @@ function initDataObject(vm) { tempFilterToken: null, tempFilterValue: null }; + //If it's a tag and it's not been set yet it needs to have an empty array to stat with for the picker + if (o.uiFieldDataType == 9 && o.tempFilterValue == null) { + o.tempFilterValue = []; + } ret.push(o); } }