Finetuning of the filter functionality

This commit is contained in:
Pieter Vander Vennet 2021-07-27 19:39:57 +02:00
parent 31d2bd83b9
commit 79569f5119
17 changed files with 219 additions and 309 deletions

View file

@ -23,7 +23,7 @@ export class VariableUiElement extends BaseUIElement {
el.innerHTML = contents;
} else if (contents instanceof Array) {
for (const content of contents) {
const c = content.ConstructElement();
const c = content?.ConstructElement();
if (c !== undefined && c !== null) {
el.appendChild(c);
}