diff --git a/src/components/FormFields/JSONManyToManySelect/ValueFormatter.vue b/src/components/FormFields/JSONManyToManySelect/ValueFormatter.vue
index f6f7ad1f5..60cf2fd56 100644
--- a/src/components/FormFields/JSONManyToManySelect/ValueFormatter.vue
+++ b/src/components/FormFields/JSONManyToManySelect/ValueFormatter.vue
@@ -4,9 +4,7 @@
-
- {{ value }}
-
+ {{ value }}
@@ -47,11 +45,12 @@ export default {
}
},
mounted() {
- this.getValue()
+ setTimeout(() => {
+ this.getValue()
+ }, 10)
},
methods: {
async getValue() {
- this.loading = true
this.attr = this.formatterArgs.attrs.find(attr => attr.name === this.row.name)
this.match = this.row.match
this.$log.debug('ValueFormatter: ', this.attr, this.row.name)
@@ -75,9 +74,7 @@ export default {
this.value = this.cellValue
}
console.log('Value: ', this.value)
- this.loading = false
}
-
}
}