Translations interface fix (#9333)

* Translations interface fix

Fixes issue

* Translations interface fix (2)
This commit is contained in:
d1rOn
2021-11-02 06:48:15 -07:00
committed by GitHub
parent 60192e35e3
commit ca964b7ac2

View File

@@ -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();
}