This commit is contained in:
2020-10-07 19:15:19 +00:00
parent 49caab4139
commit 0d8bbb54a6
3 changed files with 12 additions and 8 deletions

View File

@@ -1,6 +1,14 @@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@ ROADMAP STAGE 4 - REPORTING / DASHBOARD / KPI
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
todo: lodash, according to lighthouse it's vulnerable version and needs update
can I just remove it and replace the functionality with built in javascript methods now?
window.$gz._
pick-list.vue uses the debounce function which can be replicated with this code here:
https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore#_debounce
todo: disabled icons too bright, i.e. save looks like it is active but is slightly grayer, should it be invisible or much more disabled looking?
perhaps it's the vuetify.js disabled color setting?
todo: deploy and ui test login page for build 71,
@@ -8,18 +16,14 @@ todo: known issues has some efficiency settings for themes and good stuff to kno
todo: is notifynewcount request double sending? It seems like it appears twice at the same moment in the log
todo: lodash, according to lighthouse it's vulnerable version and needs update
can I just remove it and replace the functionality with built in javascript methods now?
window.$gz._
pick-list.vue uses the debounce function which can be replicated with this code here:
https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore#_debounce
todo: libs outside of package.json, check if they are outdated or need updating or can be replaced / removed
todo: scaffold a new vue project with same options and see what it generates for all the config files etc
I might be missing some new stuff that needs to be in there in light of the webpack whitelist thing earlier
todo: user form
create user but just type name, try to save, get mysterious object did not pass validation but it doesn't show the actual error which is customertype not set?!
todo: Joyce issue report:
can't delete second report template
FYI - still getting same server log error when try to delete report templates - CAN NOT DELETE more than one report template per loaded instance of servers

View File

@@ -481,7 +481,7 @@ export default {
//post
//ensure the route doesn't end in /0 which will happen if it's a new record
//since the edit forms just send the url here with the ID regardless
if (window.$gz._.endsWith(route, "/0")) {
if (route.endsWith("/0")) {
route = route.slice(0, -2);
}
if (isLogin == false) {

View File

@@ -274,7 +274,7 @@ export default {
if (item.type != lastType) {
//change of type, set subheader props
//de-lodash
// let tsub = window.$gz._.find(vm.selectLists.objectTypes, [
// let tsub = window.$gz. _.find(vm.selectLists.objectTypes, [
// "id",
// item.type
// ]);