Fixed: Displaying multiple values when adding custom filters

Closes #5810
pull/9251/head
Bogdan 9 months ago
parent 6fb127235c
commit 3a786d0b9d

@ -1,5 +1,5 @@
.tag { .tag {
height: 21px; display: flex;
&.isLastTag { &.isLastTag {
.or { .or {
@ -18,4 +18,5 @@
.or { .or {
margin: 0 3px; margin: 0 3px;
color: var(--themeDarkColor); color: var(--themeDarkColor);
line-height: 31px;
} }

@ -7,7 +7,7 @@ import styles from './FilterBuilderRowValueTag.css';
function FilterBuilderRowValueTag(props) { function FilterBuilderRowValueTag(props) {
return ( return (
<span <div
className={styles.tag} className={styles.tag}
> >
<TagInputTag <TagInputTag
@ -22,7 +22,7 @@ function FilterBuilderRowValueTag(props) {
{translate('Or')} {translate('Or')}
</div> </div>
} }
</span> </div>
); );
} }

Loading…
Cancel
Save