mirror of
https://github.com/documenso/documenso
synced 2026-04-21 13:27:18 +00:00
fix(i18n): mark editor field number form placeholder for translation (#2536)
This commit is contained in:
parent
8b0231825f
commit
dfbf68e4cd
1 changed files with 2 additions and 2 deletions
|
|
@ -258,7 +258,7 @@ export const EditorFieldNumberForm = ({
|
|||
<FormControl>
|
||||
<Input
|
||||
className="bg-background"
|
||||
placeholder="E.g. 0"
|
||||
placeholder={t`E.g. 0`}
|
||||
{...field}
|
||||
value={field.value ?? ''}
|
||||
onChange={(e) =>
|
||||
|
|
@ -282,7 +282,7 @@ export const EditorFieldNumberForm = ({
|
|||
<FormControl>
|
||||
<Input
|
||||
className="bg-background"
|
||||
placeholder="E.g. 100"
|
||||
placeholder={t`E.g. 100`}
|
||||
{...field}
|
||||
value={field.value ?? ''}
|
||||
onChange={(e) =>
|
||||
|
|
|
|||
Loading…
Reference in a new issue