| 
					
				 | 
			
			
				@@ -45,7 +45,7 @@ app.sortTable = function() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	// do the work... 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	document.querySelectorAll('th').forEach(th => th.addEventListener('click', (() => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-		const table = th.closest('table'); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+		const table = document.getElementById("dataRows"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		Array.from(table.querySelectorAll('tr:nth-child(n+2)')) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 			.sort(comparer(Array.from(th.parentNode.children).indexOf(th), this.asc = !this.asc)) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 			.forEach(tr => table.appendChild(tr) ); 
			 |