From 10df086e32a8e22e8a4b5472161ccdf6936d6b17 Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Sat, 1 Feb 2020 12:14:16 -0500 Subject: [PATCH] show config views on app page --- src/account/AppPage.vue | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/src/account/AppPage.vue b/src/account/AppPage.vue index 5ea9054..ef86681 100644 --- a/src/account/AppPage.vue +++ b/src/account/AppPage.vue @@ -57,6 +57,21 @@ + +
+

{{messages['app_'+app.name+'_name']}} {{messages.table_title_app_config_views}}

+
+ + + + + + +
+ {{messages['app_'+app.name+'_config_view_'+view.name]}} +
+
+
@@ -70,7 +85,8 @@ return { user: util.currentUser(), appId: null, - appViews: null + appViews: null, + appConfigViews: null }; }, computed: { @@ -136,6 +152,15 @@ } } this.appViews = appViews; + + const allConfigViews = a.dataConfig.configViews; + const appConfigViews = []; + for (let i=0; i