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
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

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