diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 478bcb5a..f0a67c3d 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -36,6 +36,10 @@ To REMOVE: apt-get remove dotnet-runtime-3.0 (replace 3.0 with whatever version MISC ITEMS THAT CAME UP todo: DATE / TIME / DATE_TIME controls switch back to vuetify ones + Look into code, the non native originals are outdated in the methods they use (watchers) + make copies of them for backup then morph them into the same type of code as the native ones use + as that is the most current performant reliable way to do it. + Ensure can clear completely to null value Test it out thoroughly there was a reason I quit using it the first time i18n diff --git a/ayanova/src/main.js b/ayanova/src/main.js index 65bf85f2..b38bcfbc 100644 --- a/ayanova/src/main.js +++ b/ayanova/src/main.js @@ -33,7 +33,6 @@ import gzenums from "./api/enums"; import "@/assets/css/main.css"; //controls -//import dateTimeControl from "./components/date-time-control.vue"; import dateTimeControl from "./components/date-time-control.vue"; import dateControl from "./components/date-control.vue"; import timeControl from "./components/time-control.vue"; @@ -178,7 +177,7 @@ document.addEventListener("fetchEnd", function() { //GZ COMPONENTS // -Vue.component("gz-date-time-picker", dateTimeControl); //keeping in case decide to support alternative (at this time mostly for mac ios it seems) +Vue.component("gz-date-time-picker", dateTimeControl); Vue.component("gz-date-picker", dateControl); Vue.component("gz-time-picker", timeControl); Vue.component("gz-tag-picker", tagPicker);