Skip to content

Commit

Permalink
#1381 | Display filterValues in separate lines
Browse files Browse the repository at this point in the history
  • Loading branch information
himeshr committed Sep 18, 2024
1 parent 8ef33e5 commit 57fae30
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Colors from '../primitives/Colors';
function MultiValueFilterDisplay({labelTexts, filter}) {
return <View key={filter.name} style={{display: "flex", flexDirection: "row", flexWrap: "wrap"}}>
{labelTexts.map((labelText, index) => {
return <View style={{display: "flex", flexDirection: "row", flexWrap: "wrap"}}>
return <View style={{display: "flex", flexDirection: "row", flexWrap: "wrap", width: 320}}>
<Text style={{
fontSize: 14,
color: Styles.greyText,
Expand Down

0 comments on commit 57fae30

Please sign in to comment.