This commit is contained in:
@@ -175,26 +175,13 @@ CUSTOM FIELD DATA:
|
|||||||
*/
|
*/
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {};
|
||||||
// c1: null,
|
|
||||||
// // c2: null, this was replaced with a computed property as will all others
|
|
||||||
// c3: null,
|
|
||||||
// c4: null,
|
|
||||||
// c5: null,
|
|
||||||
// c6: null,
|
|
||||||
// c7: null,
|
|
||||||
// c8: null,
|
|
||||||
// c9: null,
|
|
||||||
// c10: null,
|
|
||||||
// c12: null,
|
|
||||||
// c13: null,
|
|
||||||
// c14: null,
|
|
||||||
// c15: null,
|
|
||||||
// c16: null
|
|
||||||
};
|
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
value: String,
|
value: {
|
||||||
|
default: "{}",
|
||||||
|
type: String
|
||||||
|
},
|
||||||
formKey: String, //used to grab template from store
|
formKey: String, //used to grab template from store
|
||||||
readOnly: Boolean,
|
readOnly: Boolean,
|
||||||
parentVM: Object
|
parentVM: Object
|
||||||
@@ -236,13 +223,6 @@ export default {
|
|||||||
return cData[dataKey];
|
return cData[dataKey];
|
||||||
},
|
},
|
||||||
SetValueForField: function(dataKey, newValue) {
|
SetValueForField: function(dataKey, newValue) {
|
||||||
//https://stackoverflow.com/questions/39868963/vue-2-mutating-props-vue-warn
|
|
||||||
|
|
||||||
//Is this a new or empty custom fields object?
|
|
||||||
if (this.value === null || this.value === undefined) {
|
|
||||||
this.value = "{}"; //empty json fragment, field will be added later below
|
|
||||||
}
|
|
||||||
|
|
||||||
//Get the current data out of the json string value
|
//Get the current data out of the json string value
|
||||||
//
|
//
|
||||||
var cData = JSON.parse(this.value);
|
var cData = JSON.parse(this.value);
|
||||||
|
|||||||
@@ -332,7 +332,7 @@ export default {
|
|||||||
endDate: null,
|
endDate: null,
|
||||||
notes: null,
|
notes: null,
|
||||||
count: null,
|
count: null,
|
||||||
customFields: null,
|
customFields: "{}",
|
||||||
tags: []
|
tags: []
|
||||||
},
|
},
|
||||||
formState: {
|
formState: {
|
||||||
|
|||||||
Reference in New Issue
Block a user