diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 63ea5631..f9580d5b 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -12,14 +12,8 @@ TODO CLIENT STUFF #### A PHONE IS PROBABLY NOT THE MOST COMMON SIZE FORM FACTOR THAT WILL BE USED. SUPPORT PHONES, YES, BUT DON'T GET HUNG UP ON IT TO THE POINT WHERE IT RUINS THE EXPERIENCE ON A FULL COMPUTER OR TABLET -LODASH using _.has, _.forEach, _.drop - - TODO NEXT - -Make a decision on standard procedure like in Inventorywidgetlist form and loading locale text and what to do if there is an issue. - - Just thinking maybe it's best to show form in either case of error or not because at least it's working even if the lt has an issue - - Simpler is better - - +TODO NEXT +Test if a deliberate error thrown in the locale text will properly still show the content of the pages that rely on it i.e. inventory, inventorywidgetedit, log DATETIME - Test on mobile and desktop all browsers before moving on, it must be solid with error handling (required, after before etc) and etc and then if all is well we can move on to the other field types diff --git a/ayanova/src/components/inventorywidgetlist.vue b/ayanova/src/components/inventorywidgetlist.vue index 55d96b85..9c307119 100644 --- a/ayanova/src/components/inventorywidgetlist.vue +++ b/ayanova/src/components/inventorywidgetlist.vue @@ -20,7 +20,6 @@ fa-ellipsis-v - 0) { listOptions.offset = (this.pagination.page - 1) * this.pagination.rowsPerPage; @@ -142,12 +138,9 @@ export default { } listOptions.sort = this.pagination.sortBy; listOptions.asc = !this.pagination.descending; - this.loading = true; - //debugger; var listUrl = "Widget/ListWidgets?" + this.$gzapi.buildQuery(listOptions); this.$gzapi.get(listUrl).then(res => { - // debugger; this.loading = false; this.Items = res.data; this.totalItems = res.paging.count; diff --git a/ayanova/src/views/inventory.vue b/ayanova/src/views/inventory.vue index c42b8eaf..dc581457 100644 --- a/ayanova/src/views/inventory.vue +++ b/ayanova/src/views/inventory.vue @@ -1,5 +1,5 @@