First edit that works locally. Rebuilt CSS.

This commit is contained in:
James Cole
2021-03-03 07:03:44 +01:00
parent df9c9ce044
commit 4f76ea560d
46 changed files with 1586 additions and 277 deletions

View File

@@ -58,7 +58,6 @@ export default {
descriptions: [],
initialSet: [],
description: this.value,
sendEvent: true
}
},
created() {
@@ -87,14 +86,10 @@ export default {
},
watch: {
value: function (value) {
this.sendEvent = false;
this.description = value;
},
description: function (value) {
if (true === this.sendEvent) {
this.$emit('set-field', {field: 'description', index: this.index, value: value});
}
this.sendEvent = true;
this.$emit('set-field', {field: 'description', index: this.index, value: value});
}
},
}