RED-6774 - filtered out types without hasDictionary = true

This commit is contained in:
Valentin Mihai 2023-07-27 14:41:26 +03:00
parent 8c695e4b54
commit 41bf95d3a6

View File

@ -171,7 +171,7 @@ export class DictionaryService extends EntitiesService<IDictionary, Dictionary>
if (!IMAGE_TYPES.includes(d.type)) {
dictionaries.push(d);
}
} else {
} else if (d.hasDictionary) {
dictionaries.push(d);
}
}