From a5d04ee71ebc40b0f442271e83abb43822236e5a Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Fri, 14 Jun 2024 14:25:49 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20=E6=98=8E?= =?UTF-8?q?=E7=BB=86=E8=A1=A8=E7=9A=84=E5=88=86=E9=A1=B5=EF=BC=8C=E5=8F=AF?= =?UTF-8?q?=E4=BB=A5=E8=87=AA=E5=AE=9A=E4=B9=89=E8=BE=93=E5=85=A5=E8=B7=B3?= =?UTF-8?q?=E8=BD=AC=E5=88=B0=E5=A4=9A=E5=B0=91=E9=A1=B5=20#9672?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../chart/components/views/components/ChartComponentS2.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/core-frontend/src/views/chart/components/views/components/ChartComponentS2.vue b/core/core-frontend/src/views/chart/components/views/components/ChartComponentS2.vue index 3a8c5930e9..8e27575788 100644 --- a/core/core-frontend/src/views/chart/components/views/components/ChartComponentS2.vue +++ b/core/core-frontend/src/views/chart/components/views/components/ChartComponentS2.vue @@ -469,8 +469,8 @@ const tabStyle = computed(() => [ const tablePageClass = computed(() => { return ( - ['#ffffff', '#A6A6A6FF'].includes( - canvasStyleData.value.component.seniorStyleSetting?.pagerColor + ['#ffffff', '#ffffffff', '#a6a6a6ff'].includes( + canvasStyleData.value.component.seniorStyleSetting?.pagerColor.toLowerCase() ) && 'table-page-info_dark' ) })