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);
}
}