Skip to content

Commit

Permalink
added space to Index expression
Browse files Browse the repository at this point in the history
  • Loading branch information
andreadelrio committed Feb 6, 2020
1 parent 6fd417c commit f5c28e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ export const IndexThresholdAlertTypeExpression: React.FunctionComponent<Props> =
defaultMessage: 'index',
}
)}
value={index || firstFieldOption.text}
value={index ? index.join(' ') : firstFieldOption.text}
isActive={indexPopoverOpen}
onClick={() => {
setIndexPopoverOpen(true);
Expand Down

0 comments on commit f5c28e5

Please sign in to comment.