Custom themes now stick to the user account and can be revisited, small improvements

This commit is contained in:
Pieter Vander Vennet 2020-08-26 15:36:04 +02:00
parent bf6eae9af1
commit 4a0970a71f
23 changed files with 556 additions and 1748 deletions

View file

@ -13,7 +13,7 @@ export class VerticalCombine extends UIElement {
InnerRender(): string {
let html = "";
for (const element of this._elements) {
if (!element.IsEmpty()) {
if (element!== undefined && !element.IsEmpty()) {
html += "<div>" + element.Render() + "</div>";
}
}