cache = cacheManager.getCache(cacheName);
- cache.remove(key);
+ if(cache != null){
+ cache.remove(key);
+ }
}
@PostConstruct
From 32aa6c1c56a0a58032adac91fe2c82f2b7b83773 Mon Sep 17 00:00:00 2001
From: wangjiahao <1522128093@qq.com>
Date: Mon, 20 May 2024 16:59:38 +0800
Subject: [PATCH 2/3] =?UTF-8?q?refactor(=E6=95=B0=E6=8D=AE=E5=A4=A7?=
=?UTF-8?q?=E5=B1=8F):=20=E4=BC=98=E5=8C=96=E5=A4=A7=E5=B1=8F=E7=BB=84?=
=?UTF-8?q?=E4=BB=B6=E4=BF=AE=E6=94=B9=E5=90=8D=E7=A7=B0=E6=97=B6=E6=A0=B7?=
=?UTF-8?q?=E5=BC=8F=E4=B8=8E=E5=A4=A7=E5=B1=8F=E4=B8=8D=E5=8C=B9=E9=85=8D?=
=?UTF-8?q?=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../views/chart/components/editor/index.vue | 26 ++++++++++++++++---
1 file changed, 23 insertions(+), 3 deletions(-)
diff --git a/core/core-frontend/src/views/chart/components/editor/index.vue b/core/core-frontend/src/views/chart/components/editor/index.vue
index 5e97a167be..c6c2332292 100644
--- a/core/core-frontend/src/views/chart/components/editor/index.vue
+++ b/core/core-frontend/src/views/chart/components/editor/index.vue
@@ -1512,9 +1512,13 @@ const drop = (ev: MouseEvent, type = 'xAxis') => {