File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
packages/main/src/components/FilterGroupItem Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,12 @@ export const FilterGroupItem = forwardRef<HTMLDivElement, FilterGroupItemPropTyp
114
114
>
115
115
< TableCell >
116
116
< FlexBox direction = { FlexBoxDirection . Column } >
117
- < Label className = { classes . dialogCellLabel } title = { labelTooltip ?? label } required = { required } >
117
+ < Label
118
+ className = { classes . dialogCellLabel }
119
+ title = { labelTooltip ?? label }
120
+ required = { required }
121
+ showColon = { withValues }
122
+ >
118
123
{ label }
119
124
</ Label >
120
125
{ withValues && children }
@@ -133,7 +138,7 @@ export const FilterGroupItem = forwardRef<HTMLDivElement, FilterGroupItemPropTyp
133
138
< div ref = { ref } slot = { slot } { ...rest } className = { clsx ( classes . filterItem , className ) } >
134
139
< div className = { inFB ? classes . innerFilterItemContainer : classes . innerFilterItemContainerDialog } >
135
140
< FlexBox >
136
- < Label title = { labelTooltip ?? label } required = { required } >
141
+ < Label title = { labelTooltip ?? label } required = { required } showColon >
137
142
{ `${ considerGroupName && groupName !== 'default' ? `${ groupName } : ` : '' }
138
143
${ label } ` }
139
144
</ Label >
You can’t perform that action at this time.
0 commit comments