diff --git a/packages/editor-ui/src/components/FilterConditions/OperatorSelect.vue b/packages/editor-ui/src/components/FilterConditions/OperatorSelect.vue
index fe238fa5fb..03b34b02fb 100644
--- a/packages/editor-ui/src/components/FilterConditions/OperatorSelect.vue
+++ b/packages/editor-ui/src/components/FilterConditions/OperatorSelect.vue
@@ -84,12 +84,15 @@ function onGroupSelect(group: string) {
>
onGroupSelect(group.id)"
@click="() => onGroupSelect(group.id)"
>
-
-
{{ i18n.baseText(group.name) }}
+
+
+ {{ i18n.baseText(group.name) }}
+
+
@@ -122,10 +125,11 @@ function onGroupSelect(group: string) {
flex-direction: column;
}
-.groupTitle {
+.group {
display: flex;
gap: var(--spacing-2xs);
align-items: center;
+ justify-content: space-between;
font-size: var(--font-size-s);
font-weight: var(--font-weight-bold);
line-height: var(--font-line-height-regular);
@@ -137,4 +141,10 @@ function onGroupSelect(group: string) {
background: var(--color-background-base);
}
}
+
+.groupTitle {
+ display: flex;
+ gap: var(--spacing-2xs);
+ align-items: center;
+}