Skip to content

Commit

Permalink
Merge pull request #335 from kubeshop/mm/fix/tagspace
Browse files Browse the repository at this point in the history
fix: create assertion form tag space
  • Loading branch information
mortada-codes committed Apr 26, 2022
2 parents 157d968 + 5314f50 commit f18fde0
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,14 @@ export const CreateAssertionSelectorInput: React.FC<TItemSelectorDropdownProps>

return (
<>
<div style={{marginBottom: 8, display: 'flex', flexWrap: 'wrap'}}>
<div style={{display: 'flex', flexWrap: 'wrap'}}>
{selectorList.map((item: ItemSelector) => (
<Tag key={item.propertyName} closable onClose={() => handleDeleteItemSelector(item)}>
<Tag
key={item.propertyName}
style={{marginBottom: 8}}
closable
onClose={() => handleDeleteItemSelector(item)}
>
{item.value}
</Tag>
))}
Expand Down

0 comments on commit f18fde0

Please sign in to comment.