Butchering the UI framework

This commit is contained in:
Pieter Vander Vennet 2021-06-10 01:36:20 +02:00
parent 8d404b1ba9
commit 6415e195d1
90 changed files with 1012 additions and 3101 deletions

View file

@ -48,7 +48,7 @@ export default class QuestionBox extends UIElement {
this.SetClass("block mb-8")
}
InnerRender(): string {
InnerRender() {
const allQuestions : UIElement[] = []
for (let i = 0; i < this._tagRenderingQuestions.length; i++) {
let tagRendering = this._tagRenderings[i];
@ -72,7 +72,7 @@ export default class QuestionBox extends UIElement {
}
return new Combine(allQuestions).Render();
return new Combine(allQuestions);
}
}