From 75ce533da8b68c23dd17afd80135f8d87fba1c7c Mon Sep 17 00:00:00 2001 From: wisonic-s Date: Wed, 27 May 2026 22:25:16 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E8=A1=A8):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E8=A1=A8=E6=A0=BC=E5=88=9D=E5=A7=8B=E5=8C=96=E6=97=B6=E6=80=BB?= =?UTF-8?q?=E8=AE=A1=E6=A0=87=E7=AD=BE=E4=BD=8D=E7=BD=AE=E6=B8=B2=E6=9F=93?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/chart/components/js/panel/common/common_table.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/core-frontend/src/views/chart/components/js/panel/common/common_table.ts b/core/core-frontend/src/views/chart/components/js/panel/common/common_table.ts index 8bf9df0aec..116c441e11 100644 --- a/core/core-frontend/src/views/chart/components/js/panel/common/common_table.ts +++ b/core/core-frontend/src/views/chart/components/js/panel/common/common_table.ts @@ -3373,6 +3373,9 @@ export class SummaryCell extends CustomDataCell { } else { textStyle.textAlign = this.theme.dataCell.text.textAlign } + if (textStyle.textAlign === 'custom') { + textStyle.textAlign = 'left' + } return textStyle }