From ad95e6a3873bac1f3e690bc750fb75b7274a3808 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C5=BEe=20Fortun?= Date: Mon, 29 Apr 2024 15:11:50 +0200 Subject: [PATCH] Adjust chart editor to rerender chart on config change even if chart is new --- client/web/compose/src/views/Admin/Charts/Edit.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/web/compose/src/views/Admin/Charts/Edit.vue b/client/web/compose/src/views/Admin/Charts/Edit.vue index 4f3a3fa24..abe864168 100644 --- a/client/web/compose/src/views/Admin/Charts/Edit.vue +++ b/client/web/compose/src/views/Admin/Charts/Edit.vue @@ -722,7 +722,7 @@ export default { 'chart.config': { deep: true, handler (value, oldValue) { - if (value && oldValue && this.isEdit) { + if (value && oldValue) { this.onConfigUpdate() } },