Stuff more or less works

This commit is contained in:
Pieter Vander Vennet 2021-01-25 04:21:22 +01:00
parent 149e117887
commit e2e48344d6
6 changed files with 38 additions and 38 deletions

View file

@ -28,9 +28,7 @@ export default class LazyElement<T extends UIElement> extends UIElement {
if (this._content === undefined) {
return this._loadingContent;
}
return this._content.InnerRender();
return this._content.Render();
}
}