fix: update placeholders in version info modal to indicate optional field (#15499)
This commit is contained in:
parent
b07016113c
commit
90a1508b87
@ -83,7 +83,7 @@ const VersionInfoModal: FC<VersionInfoModalProps> = ({
|
|||||||
</div>
|
</div>
|
||||||
<Input
|
<Input
|
||||||
value={title}
|
value={title}
|
||||||
placeholder={t('workflow.versionHistory.nameThisVersion')}
|
placeholder={`${t('workflow.versionHistory.nameThisVersion')}${t('workflow.panel.optional')}`}
|
||||||
onChange={handleTitleChange}
|
onChange={handleTitleChange}
|
||||||
destructive={titleError}
|
destructive={titleError}
|
||||||
/>
|
/>
|
||||||
@ -94,7 +94,7 @@ const VersionInfoModal: FC<VersionInfoModalProps> = ({
|
|||||||
</div>
|
</div>
|
||||||
<Textarea
|
<Textarea
|
||||||
value={releaseNotes}
|
value={releaseNotes}
|
||||||
placeholder={t('workflow.versionHistory.releaseNotesPlaceholder')}
|
placeholder={`${t('workflow.versionHistory.releaseNotesPlaceholder')}${t('workflow.panel.optional')}`}
|
||||||
onChange={handleDescriptionChange}
|
onChange={handleDescriptionChange}
|
||||||
destructive={releaseNotesError}
|
destructive={releaseNotesError}
|
||||||
/>
|
/>
|
||||||
|
Loading…
Reference in New Issue
Block a user