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; +}