diff --git a/src/components/pluginComponents/formComponents/JsonForm.vue b/src/components/pluginComponents/formComponents/JsonForm.vue index dcd5e622..46f0fe8c 100644 --- a/src/components/pluginComponents/formComponents/JsonForm.vue +++ b/src/components/pluginComponents/formComponents/JsonForm.vue @@ -62,14 +62,8 @@ export default { } }, - created: function () { - // `this` points to the vm instance - console.log(this.schema) - }, - methods: { updateForm(fieldName, value) { - console.log(`${fieldName}: ${value}`) this.$set(this.formData, fieldName, value); this.$emit('input', this.formData) },