diff --git a/src/components/Table/TableFormatters/LabelsFormatter.vue b/src/components/Table/TableFormatters/LabelsFormatter.vue index f3067a0bc..cb9cf4b48 100644 --- a/src/components/Table/TableFormatters/LabelsFormatter.vue +++ b/src/components/Table/TableFormatters/LabelsFormatter.vue @@ -131,6 +131,16 @@ export default { } }, computed: {}, + watch: { + cellValue: { + handler(newValue) { + if (newValue) { + this.initial = this.formatterArgs.getLabels(this.cellValue) + this.iLabels = [...this.initial] + } + } + } + }, mounted() { this.initial = this.formatterArgs.getLabels(this.cellValue) this.iLabels = [...this.initial]