This commit is contained in:
@@ -158,6 +158,13 @@ TODO: Bug? Set widget edit form times to 4:20pm and observe that in the main gr
|
|||||||
TODO: BUG? If I open a widget record, make no changes just click on another navigation item like operations console, instead of navigating I get an error about object did not pass validation and it stays on that page
|
TODO: BUG? If I open a widget record, make no changes just click on another navigation item like operations console, instead of navigating I get an error about object did not pass validation and it stays on that page
|
||||||
- It's trying to open this url: https://test.helloayanova.com/inventory/widget/edit/ops for some reason tagging ops on to the current route, not replacing the route entirely
|
- It's trying to open this url: https://test.helloayanova.com/inventory/widget/edit/ops for some reason tagging ops on to the current route, not replacing the route entirely
|
||||||
|
|
||||||
|
|
||||||
|
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
|
||||||
|
|||||||
@@ -497,8 +497,6 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
remove() {
|
remove() {
|
||||||
throw "Fake remove error";
|
|
||||||
// eslint-disable-next-line no-unreachable
|
|
||||||
var vm = this;
|
var vm = this;
|
||||||
window.$gz.dialog.confirmDelete().then(dialogResult => {
|
window.$gz.dialog.confirmDelete().then(dialogResult => {
|
||||||
if (dialogResult == true) {
|
if (dialogResult == true) {
|
||||||
@@ -541,8 +539,6 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
duplicate() {
|
duplicate() {
|
||||||
throw "Fake duplicate error";
|
|
||||||
// eslint-disable-next-line no-unreachable
|
|
||||||
if (this.canDuplicate && this.$route.params.id != 0) {
|
if (this.canDuplicate && this.$route.params.id != 0) {
|
||||||
this.formState.loading = true;
|
this.formState.loading = true;
|
||||||
var vm = this;
|
var vm = this;
|
||||||
|
|||||||
Reference in New Issue
Block a user