From aa81f728bc13953ebbb38695eac2708197769677 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Tue, 21 Apr 2026 16:00:02 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=A0=B7=E5=BC=8F=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/hooks/web/useFilter.ts | 4 ++-- core/core-frontend/src/style/index.less | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/core/core-frontend/src/hooks/web/useFilter.ts b/core/core-frontend/src/hooks/web/useFilter.ts index 45fa4f32ac..1a243a8e0f 100644 --- a/core/core-frontend/src/hooks/web/useFilter.ts +++ b/core/core-frontend/src/hooks/web/useFilter.ts @@ -271,7 +271,7 @@ const getOperator = ( firstLoad ) => { if (+displayType === 9) { - return multiple ? 'in' : 'eq' + return 'in' } if (+displayType === 22) { @@ -295,7 +295,7 @@ const getOperator = ( return valueF === '' ? operatorS : operatorF } - return [1, 7].includes(+displayType) ? 'between' : multiple ? 'in' : 'eq' + return [1, 7].includes(+displayType) ? 'between' : 'in' } const duplicateRemoval = arr => { diff --git a/core/core-frontend/src/style/index.less b/core/core-frontend/src/style/index.less index cfd7a1081a..656f90fd8f 100644 --- a/core/core-frontend/src/style/index.less +++ b/core/core-frontend/src/style/index.less @@ -849,3 +849,7 @@ strong { border-color: #e5e6eb; } } + +.ed-dialog__headerbtn { + border-radius: 6px !important; +}