Browse Source

fix: update placeholders in version info modal to indicate optional field (#15499)

tags/1.0.1
Wu Tianwei 7 months ago
parent
commit
90a1508b87
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      web/app/components/app/app-publisher/version-info-modal.tsx

+ 2
- 2
web/app/components/app/app-publisher/version-info-modal.tsx View File

</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}
/> />
</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…
Cancel
Save