revert dashboard back to underconstruction from test picklist stuff

This commit is contained in:
2020-04-05 19:47:48 +00:00
parent e0b22a202a
commit 8432ed62f7
2 changed files with 2 additions and 40 deletions

View File

@@ -1,23 +1,5 @@
<template>
<div>
<gz-pick-list
v-model="selectedWidget"
:ayaType="ayaType().Widget"
:label="$ay.t('Widget')"
:showEditIcon="true"
>
</gz-pick-list>
<v-divider></v-divider>
<gz-pick-list
v-model="selectedUser"
:ayaType="ayaType().User"
:label="$ay.t('User')"
>
</gz-pick-list>
<v-divider></v-divider>
<div>FORM Selected Widget: {{ selectedWidget }}</div>
<div>FORM Selected User: {{ selectedUser }}</div>
</div>
<UnderConstruction />
</template>
<script>
@@ -35,7 +17,7 @@ import UnderConstruction from "../components/underconstruction.vue";
*/
export default {
components: {
//UnderConstruction
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
@@ -44,17 +26,6 @@ export default {
title: this.$ay.t("Dashboard"),
helpUrl: "form-home-dashboard"
});
},
data() {
return {
selectedWidget: 0,
selectedUser: 2
};
},
methods: {
ayaType: function() {
return window.$gz.type;
}
}
};
</script>