Browse Source

Correction

Piotr Czajkowski 3 years ago
parent
commit
ff83f128f7
1 changed files with 1 additions and 1 deletions
  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;