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

@@ -50,15 +50,6 @@ CURRENT TODOs
@@@@@@@@@@@ ROADMAP STAGE 2:
todo: Hover / hint text on copy log and log buttons
- surfaced menu options could benefit from this
todo: Modify underconstruction to support alternate size image
- right now it just cuts off on smaller form factors, would be much nicer and cleaner if it shows responsively
- Important because it's going to be seen by beta testers
- https://developer.mozilla.org/en-US/docs/Learn/HTML/Multimedia_and_embedding/Responsive_images
- https://vuetifyjs.com/en/components/images
todo: SERVER STATUS
- check server status on attempt to login for first time or whatever, it should give a prominent warning if the server is unavailable due to closed for maint or whatever rather than just timing out.
- Also it allows login which is good but it should restrict the UI if it's a fresh login to a closed server rather than just failing to do certain things

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>