mirror of
https://github.com/documenso/documenso.git
synced 2026-07-25 17:35:05 +10:00
fix(i18n): mark editor field number form placeholder for translation (#2536)
This commit is contained in:
@@ -258,7 +258,7 @@ export const EditorFieldNumberForm = ({
|
|||||||
<FormControl>
|
<FormControl>
|
||||||
<Input
|
<Input
|
||||||
className="bg-background"
|
className="bg-background"
|
||||||
placeholder="E.g. 0"
|
placeholder={t`E.g. 0`}
|
||||||
{...field}
|
{...field}
|
||||||
value={field.value ?? ''}
|
value={field.value ?? ''}
|
||||||
onChange={(e) =>
|
onChange={(e) =>
|
||||||
@@ -282,7 +282,7 @@ export const EditorFieldNumberForm = ({
|
|||||||
<FormControl>
|
<FormControl>
|
||||||
<Input
|
<Input
|
||||||
className="bg-background"
|
className="bg-background"
|
||||||
placeholder="E.g. 100"
|
placeholder={t`E.g. 100`}
|
||||||
{...field}
|
{...field}
|
||||||
value={field.value ?? ''}
|
value={field.value ?? ''}
|
||||||
onChange={(e) =>
|
onChange={(e) =>
|
||||||
|
|||||||
Reference in New Issue
Block a user