diff --git a/core/core-frontend/src/hooks/web/useFilter.ts b/core/core-frontend/src/hooks/web/useFilter.ts index edad631dd7..070bc48e30 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 0f53c36663..8ac8788110 100644 --- a/core/core-frontend/src/style/index.less +++ b/core/core-frontend/src/style/index.less @@ -853,3 +853,7 @@ strong { border-color: #e5e6eb; } } + +.ed-dialog__headerbtn { + border-radius: 6px !important; +}