From 743a972a506dcfeb741c6fd462349d25762d5f72 Mon Sep 17 00:00:00 2001 From: Tobias Date: Thu, 21 Jan 2021 05:55:25 +0100 Subject: [PATCH] Questions: Remove
Tags Instead use block elements --- UI/Popup/TagRenderingQuestion.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/UI/Popup/TagRenderingQuestion.ts b/UI/Popup/TagRenderingQuestion.ts index 6cbea10e6..347013723 100644 --- a/UI/Popup/TagRenderingQuestion.ts +++ b/UI/Popup/TagRenderingQuestion.ts @@ -88,7 +88,6 @@ export default class TagRenderingQuestion extends UIElement { return tags.asHumanString(true, true); } ) - ).AddClass("block") } @@ -270,12 +269,13 @@ export default class TagRenderingQuestion extends UIElement { InnerRender(): string { return new Combine([ this._question, - this._inputElement, "
", + this._inputElement, this._cancelButton, - this._saveButton, "
", - this._appliedTags]) - .SetClass("question") - .Render() + this._saveButton, + this._appliedTags] + ) + .SetClass("question") + .Render() } } \ No newline at end of file