GroupTagsField: hide "x" until there's more than one tag

This commit is contained in:
Alex Gleason
2023-04-21 11:31:59 -05:00
parent fc6eba91ac
commit ede31e4e5a

View File

@ -28,6 +28,7 @@ const GroupTagsField: React.FC<IGroupTagsField> = ({ tags, onChange, onAddItem,
onAddItem={onAddItem}
onRemoveItem={onRemoveItem}
maxItems={maxItems}
minItems={1}
/>
);
};