This commit is contained in:
2020-04-20 19:03:11 +00:00
parent 0b7f17bab1
commit dbeb874103
3 changed files with 2 additions and 8 deletions

View File

@@ -66,7 +66,6 @@ CURRENT TODOs
todo: make the navigation pane sticky so it remembers the last setting of hidden or showing in large view size
todo: enter new tag in widget doesn't trigger dirty? todo: enter new tag in widget doesn't trigger dirty?
todo: Test widget form as bizamdinlimited read only mode because I think several things are not right in read only mode todo: Test widget form as bizamdinlimited read only mode because I think several things are not right in read only mode

View File

@@ -257,11 +257,6 @@ export default {
} }
}; };
}, },
// watch: {
// drawer(val) {
// this.$store.commit("setDrawer", this.drawer);
// }
// },
created() { created() {
//Detect version change, wipe persisted form settings if has changed //Detect version change, wipe persisted form settings if has changed
let currentVersion = window.$gz.clientInfo.version; let currentVersion = window.$gz.clientInfo.version;
@@ -288,7 +283,6 @@ export default {
openObjectHandler.wireUpEventHandlers(this); openObjectHandler.wireUpEventHandlers(this);
window.$gz.translation.setVuetifyDefaultLanguageElements(this); window.$gz.translation.setVuetifyDefaultLanguageElements(this);
// this.drawer = this.$store.state.drawer;
}, },
beforeDestroy() { beforeDestroy() {
//UNWIRE ALL EVENT HANDLERS FROM GZEVENTBUS //UNWIRE ALL EVENT HANDLERS FROM GZEVENTBUS

View File

@@ -102,6 +102,7 @@ export default {
this.sourcetags.push(theTag); this.sourcetags.push(theTag);
this.value.push(theTag); this.value.push(theTag);
this.tagSearchEntry = ""; this.tagSearchEntry = "";
this.$emit("input", this.value);
}, },
normalizeTag(tagName) { normalizeTag(tagName) {
//kebab case takes care of all the things we need for tags in one go //kebab case takes care of all the things we need for tags in one go