1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-03 22:57:18 +02:00

Fixed: Displaying multiple values when adding custom filters

Closes #5810
This commit is contained in:
Bogdan 2023-10-10 05:55:55 +03:00
parent 6fb127235c
commit 3a786d0b9d
2 changed files with 4 additions and 3 deletions

View File

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

View File

@ -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>
); );
} }