Merge branch 'group-tags-x' into 'develop'

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

See merge request soapbox-pub/soapbox!2461
This commit is contained in:
Alex Gleason 2023-04-24 15:00:30 +00:00
commit 5834be838b

View file

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