瀏覽代碼

Correction

Piotr Czajkowski 3 年之前
父節點
當前提交
ff83f128f7
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      static/processResults.js

+ 1 - 1
static/processResults.js

@@ -53,7 +53,7 @@ app.sortTable = function() {
 		const table = document.getElementById("dataRows");
 		Array.from(table.querySelectorAll('tr'))
 			.sort(app.comparer(Array.from(th.parentNode.children).indexOf(th), this.asc = !this.asc))
-			.forEach(tr => table.appendChild(tr) );
+			.forEach(tr => table.appendChild(tr));
 
 		if (!th.textContent.includes(app.sorted)) {
 			th.textContent += app.sorted;