revert dashboard back to underconstruction from test picklist stuff
This commit is contained in:
@@ -50,15 +50,6 @@ CURRENT TODOs
|
|||||||
@@@@@@@@@@@ ROADMAP STAGE 2:
|
@@@@@@@@@@@ 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
|
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.
|
- 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
|
- 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
|
||||||
|
|||||||
@@ -1,23 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<UnderConstruction />
|
||||||
<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>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -35,7 +17,7 @@ import UnderConstruction from "../components/underconstruction.vue";
|
|||||||
*/
|
*/
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
//UnderConstruction
|
UnderConstruction
|
||||||
},
|
},
|
||||||
beforeCreate() {
|
beforeCreate() {
|
||||||
window.$gz.eventBus.$emit("menu-change", {
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
@@ -44,17 +26,6 @@ export default {
|
|||||||
title: this.$ay.t("Dashboard"),
|
title: this.$ay.t("Dashboard"),
|
||||||
helpUrl: "form-home-dashboard"
|
helpUrl: "form-home-dashboard"
|
||||||
});
|
});
|
||||||
},
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
selectedWidget: 0,
|
|
||||||
selectedUser: 2
|
|
||||||
};
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
ayaType: function() {
|
|
||||||
return window.$gz.type;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user