style(App) eliminate whitespace at the end of code lines (#5735)

This commit is contained in:
Joe Bordes
2021-05-30 19:20:17 +01:00
committed by GitHub
parent 51fd02d9b6
commit 82ec63e711
73 changed files with 134 additions and 136 deletions
+2 -2
View File
@@ -63,7 +63,7 @@ SetWidget.prototype.getValue = function() {
if(this.setSubTiddler) {
tiddler = this.wiki.getSubTiddler(this.setTiddler,this.setSubTiddler);
} else {
tiddler = this.wiki.getTiddler(this.setTiddler);
tiddler = this.wiki.getTiddler(this.setTiddler);
}
if(!tiddler) {
value = this.setEmptyValue;
@@ -84,7 +84,7 @@ SetWidget.prototype.getValue = function() {
if(select !== undefined) {
value = results[select] || "";
} else {
value = $tw.utils.stringifyList(results);
value = $tw.utils.stringifyList(results);
}
}
if(results.length === 0 && this.setEmptyValue !== undefined) {