From 6819e6ffa466c973f9a197d7009a2cfc1003673a Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Mon, 8 Feb 2021 23:15:03 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 4 +++- ayanova/src/components/data-table.vue | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index e681eb73..cf83d50f 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -57,11 +57,13 @@ todo: custom column shenanigans: >>> https://test.helloayanova.com/login >>> >>> the new Sort +todo: is data-table function buildRecords(listData, columndefinitions, ridColumnOpenable) being called twice every time?? +todo: column picker form, make not included columns not show the movement controls todo: if you change the filter the page should reset to 1 or else you get a weird scenario where it says page 5 but there is only one result page so it says no data todo: tagpicker, don't like how it works, it's funky to enter multiple tags and input doesn't go away when you select it just leaves the typed text there once a selection is made it should not repeat the typed text again, it shoudl be ready to type another tag from start - +todo: enabled first custom field for customer and got weird error about mutating a prop directly but then it just worked as if no problem ? todo: check timeout algorithm for notification checking, when server is down it seems to top out at 10 minutes delay, but that seems short if the server is down all night and it's checking constantly or something ** IMPORTANT todo: double check concurrency code with Customer or Project just to be sure, it has been changed but not sure if it was ever properly tested. diff --git a/ayanova/src/components/data-table.vue b/ayanova/src/components/data-table.vue index aaa9f43d..9d5ddaae 100644 --- a/ayanova/src/components/data-table.vue +++ b/ayanova/src/components/data-table.vue @@ -1048,6 +1048,8 @@ function buildRecords(listData, columndefinitions, ridColumnOpenable) { } ret.push(o); } + console.log("buildRecords ret:", { ...ret }); + return ret; }