diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 3a5c0007..26ab40a9 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -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 - 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 - 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 diff --git a/ayanova/src/views/inventory-widget-edit.vue b/ayanova/src/views/inventory-widget-edit.vue index 45539cde..f6f060ef 100644 --- a/ayanova/src/views/inventory-widget-edit.vue +++ b/ayanova/src/views/inventory-widget-edit.vue @@ -497,8 +497,6 @@ export default { } }, remove() { - throw "Fake remove error"; - // eslint-disable-next-line no-unreachable var vm = this; window.$gz.dialog.confirmDelete().then(dialogResult => { if (dialogResult == true) { @@ -541,8 +539,6 @@ export default { }); }, duplicate() { - throw "Fake duplicate error"; - // eslint-disable-next-line no-unreachable if (this.canDuplicate && this.$route.params.id != 0) { this.formState.loading = true; var vm = this;