Strip internal tag prefix from form labels

This commit is contained in:
Dan Peterson 2021-12-30 14:47:25 -06:00 committed by Thomas Zarebczan
parent a96d2a47be
commit 78d8446a0b
2 changed files with 4 additions and 1 deletions

View file

@ -5,7 +5,7 @@ import Tag from 'component/tag';
import { setUnion, setDifference } from 'util/set-operations'; import { setUnion, setDifference } from 'util/set-operations';
import I18nMessage from 'component/i18nMessage'; import I18nMessage from 'component/i18nMessage';
import analytics from 'analytics'; import analytics from 'analytics';
import { CONTROL_TAGS, INTERNAL_TAGS } from 'constants/tags'; import { CONTROL_TAGS, INTERNAL_TAGS, INTERNAL_TAG_PREFIX } from 'constants/tags';
type Props = { type Props = {
tagsPassedIn: Array<Tag>, tagsPassedIn: Array<Tag>,
@ -242,6 +242,7 @@ export default function TagsSearch(props: Props) {
blockWrap={false} blockWrap={false}
label={__( label={__(
t t
.replace(INTERNAL_TAG_PREFIX, '')
.split('-') .split('-')
.map((word) => word.charAt(0).toUpperCase() + word.slice(1)) .map((word) => word.charAt(0).toUpperCase() + word.slice(1))
.join(' ') .join(' ')

View file

@ -13,6 +13,8 @@ export const DEFAULT_FOLLOWED_TAGS = [
'technology', 'technology',
]; ];
export const INTERNAL_TAG_PREFIX = 'c:';
export const DISABLE_COMMENTS_TAG = 'c:disable-comments'; export const DISABLE_COMMENTS_TAG = 'c:disable-comments';
export const DISABLE_SUPPORT_TAG = 'disable-support'; export const DISABLE_SUPPORT_TAG = 'disable-support';
export const PREFERENCE_EMBED = 'c:preference-embed'; export const PREFERENCE_EMBED = 'c:preference-embed';