Questions: Remove <br> Tags
Instead use block elements
This commit is contained in:
parent
e1568876b8
commit
743a972a50
1 changed files with 6 additions and 6 deletions
|
@ -88,7 +88,6 @@ export default class TagRenderingQuestion extends UIElement {
|
|||
return tags.asHumanString(true, true);
|
||||
}
|
||||
)
|
||||
|
||||
).AddClass("block")
|
||||
}
|
||||
|
||||
|
@ -270,10 +269,11 @@ export default class TagRenderingQuestion extends UIElement {
|
|||
InnerRender(): string {
|
||||
return new Combine([
|
||||
this._question,
|
||||
this._inputElement, "<br/>",
|
||||
this._inputElement,
|
||||
this._cancelButton,
|
||||
this._saveButton, "<br/>",
|
||||
this._appliedTags])
|
||||
this._saveButton,
|
||||
this._appliedTags]
|
||||
)
|
||||
.SetClass("question")
|
||||
.Render()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue