Remove empty spaces
Default Setting by my editor. Let me know I you want to keep them.
This commit is contained in:
parent
8f8e5f7636
commit
61964a801f
6 changed files with 22 additions and 26 deletions
|
@ -7,7 +7,6 @@ export class UIEventSource<T>{
|
||||||
this.data = data;
|
this.data = data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public addCallback(callback: ((latestData: T) => void)): UIEventSource<T> {
|
public addCallback(callback: ((latestData: T) => void)): UIEventSource<T> {
|
||||||
if(callback === console.log){
|
if(callback === console.log){
|
||||||
// This ^^^ actually works!
|
// This ^^^ actually works!
|
||||||
|
|
|
@ -40,7 +40,6 @@ export default class QuestionBox extends UIElement {
|
||||||
})
|
})
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
||||||
this._skippedQuestionsButton = Translations.t.general.skippedQuestions.Clone()
|
this._skippedQuestionsButton = Translations.t.general.skippedQuestions.Clone()
|
||||||
.onClick(() => {
|
.onClick(() => {
|
||||||
self._skippedQuestions.setData([]);
|
self._skippedQuestions.setData([]);
|
||||||
|
|
|
@ -78,7 +78,6 @@ export default class TagRenderingQuestion extends UIElement {
|
||||||
if (csCount < Constants.userJourney.tagsVisibleAt) {
|
if (csCount < Constants.userJourney.tagsVisibleAt) {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tags === undefined) {
|
if (tags === undefined) {
|
||||||
return Translations.t.general.noTagsSelected.SetClass("subtle").Render();
|
return Translations.t.general.noTagsSelected.SetClass("subtle").Render();
|
||||||
}
|
}
|
||||||
|
@ -89,8 +88,8 @@ export default class TagRenderingQuestion extends UIElement {
|
||||||
return tags.asHumanString(true, true);
|
return tags.asHumanString(true, true);
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
)
|
|
||||||
|
|
||||||
|
).AddClass("block")
|
||||||
}
|
}
|
||||||
|
|
||||||
private GenerateInputElement(): InputElement<TagsFilter> {
|
private GenerateInputElement(): InputElement<TagsFilter> {
|
||||||
|
@ -268,7 +267,6 @@ export default class TagRenderingQuestion extends UIElement {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
InnerRender(): string {
|
InnerRender(): string {
|
||||||
return new Combine([
|
return new Combine([
|
||||||
this._question,
|
this._question,
|
||||||
|
|
Loading…
Reference in a new issue