diff --git a/app/soapbox/features/group/components/group-tags-field.tsx b/app/soapbox/features/group/components/group-tags-field.tsx index 326fbfd8b..e4592a6e4 100644 --- a/app/soapbox/features/group/components/group-tags-field.tsx +++ b/app/soapbox/features/group/components/group-tags-field.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { defineMessages, useIntl } from 'react-intl'; +import { FormattedMessage, defineMessages, useIntl } from 'react-intl'; import { Input, Streamfield } from 'soapbox/components/ui'; @@ -18,8 +18,8 @@ interface IGroupTagsField { const GroupTagsField: React.FC = ({ tags, onChange, onAddItem, onRemoveItem, maxItems = 3 }) => { return ( } + hint={} component={HashtagField} values={tags} onChange={onChange} diff --git a/app/soapbox/locales/en.json b/app/soapbox/locales/en.json index e9a259771..bc3423213 100644 --- a/app/soapbox/locales/en.json +++ b/app/soapbox/locales/en.json @@ -806,6 +806,8 @@ "group.role.owner": "Owner", "group.tabs.all": "All", "group.tabs.members": "Members", + "group.tags.hint": "Add up to 3 keywords that will serve as core topics of discussion in the group.", + "group.tags.label": "Tags", "group.upload_banner": "Upload photo", "groups.discover.popular.empty": "Unable to fetch popular groups at this time. Please check back later.", "groups.discover.popular.show_more": "Show More",