From ca964b7ac276943fe85445fe1abdd710a32ee82c Mon Sep 17 00:00:00 2001 From: d1rOn Date: Tue, 2 Nov 2021 06:48:15 -0700 Subject: [PATCH] Translations interface fix (#9333) * Translations interface fix Fixes issue * Translations interface fix (2) --- app/src/interfaces/translations/translations.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/interfaces/translations/translations.vue b/app/src/interfaces/translations/translations.vue index e843428db8..884a0d2f23 100644 --- a/app/src/interfaces/translations/translations.vue +++ b/app/src/interfaces/translations/translations.vue @@ -281,7 +281,7 @@ export default defineComponent({ if ( newVal && newVal !== oldVal && - newVal?.every((item) => typeof item === 'string' || typeof item === 'number') + newVal?.every((item) => typeof item === 'string' || typeof item === 'number' || typeof item === 'object') ) { loadItems(); }