From b46030654f118f38fe731383853cce1544ddab15 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 29 Jan 2020 18:27:38 +0000 Subject: [PATCH] --- ayanova/src/components/gz-data-table.vue | 18 ++++++------------ ayanova/src/views/test-widgets.vue | 13 ++++++++++++- 2 files changed, 18 insertions(+), 13 deletions(-) diff --git a/ayanova/src/components/gz-data-table.vue b/ayanova/src/components/gz-data-table.vue index 2fc1c03b..acc46578 100644 --- a/ayanova/src/components/gz-data-table.vue +++ b/ayanova/src/components/gz-data-table.vue @@ -4,6 +4,7 @@
apiBaseUrl: {{ apiBaseUrl }}
formKey: {{ formKey }}
dataListKey: {{ dataListKey }}
+
dataFilterId: {{ dataFilterId }}
viewPort is XS: {{ isXS() }}
@@ -24,6 +25,16 @@ export default { //, //helpUrl: "form-inv-parts" }); + }, + data() { + return { + currentDataFilterId: 0 + }; + }, + methods: { + getCaption() { + return window.$gz.locale.get("WidgetList"); + } } };