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.
i18n
1 parent 814ced4 commit 5d65cb0Copy full SHA for 5d65cb0
.github/workflows/pr-title.yml
@@ -53,6 +53,7 @@ jobs:
53
plugin-cloud
54
plugin-cloud-storage
55
plugin-form-builder
56
+ plugin-import-export
57
plugin-multi-tenant
58
plugin-nested-docs
59
plugin-redirects
packages/plugin-import-export/src/index.ts
@@ -66,7 +66,11 @@ export const importExportPlugin =
66
collection.admin.components = components
67
})
68
69
- config.i18n = deepMergeSimple(translations, config.i18n?.translations ?? {})
+ if (!config.i18n) {
70
+ config.i18n = {}
71
+ }
72
+
73
+ config.i18n.translations = deepMergeSimple(translations, config.i18n?.translations ?? {})
74
75
return config
76
}
0 commit comments