Improve tags helptext and add warnings

This commit is contained in:
bakerboy448
2023-09-14 12:48:28 -05:00
committed by GitHub
parent 0f3a77c336
commit c061c309bd
3 changed files with 7 additions and 2 deletions

View File

@@ -187,6 +187,7 @@ function EditIndexerModalContent(props) {
type={inputTypes.TAG}
name="tags"
helpText={translate('IndexerTagsHelpText')}
helpTextWarning={translate('IndexerTagsHelpTextWarning')}
{...tags}
onChange={onInputChange}
/>

View File

@@ -133,7 +133,8 @@ function EditApplicationModalContent(props) {
<FormInputGroup
type={inputTypes.TAG}
name="tags"
helpText={translate('TagsHelpText')}
helpText={translate('ApplicationTagsHelpText')}
helpTextWarning={translate('ApplicationTagsHelpTextWarning')}
{...tags}
onChange={onInputChange}
/>