fix(i18n): mark editor field number form placeholder for translation (#2536)

This commit is contained in:
Konrad 2026-03-05 04:31:24 +01:00 committed by GitHub
parent 8b0231825f
commit dfbf68e4cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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) =>