We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9c45f6 commit 8b18da7Copy full SHA for 8b18da7
src/admin/components/forms/field-types/Array/index.tsx
@@ -260,7 +260,7 @@ const ArrayFieldType: React.FC<Props> = (props) => {
260
>
261
{rows.length > 0 && rows.map((row, i) => {
262
const rowNumber = i + 1;
263
- const fallbackLabel = `${labels.singular} ${String(rowNumber).padStart(2, '0')}`;
+ const fallbackLabel = `${getTranslation(labels.singular, i18n)} ${String(rowNumber).padStart(2, '0')}`;
264
265
return (
266
<Draggable
0 commit comments