mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	Fix missing table headers on admin page.
(imported from commit e5c97838e1b5b11c90384d8c49aa2087fd8fc219)
This commit is contained in:
		@@ -6,9 +6,10 @@ function populate_users (realm_people_data) {
 | 
			
		||||
    var users_table = $("#admin_users_table");
 | 
			
		||||
    var deactivated_users_table = $("#admin_deactivated_users_table");
 | 
			
		||||
    var bots_table = $("#admin_bots_table");
 | 
			
		||||
    users_table.empty();
 | 
			
		||||
    deactivated_users_table.empty();
 | 
			
		||||
    bots_table.empty();
 | 
			
		||||
    // Clear table rows, but not the table headers
 | 
			
		||||
    users_table.find("tr.user_row").remove();
 | 
			
		||||
    deactivated_users_table.find("tr.user_row").remove();
 | 
			
		||||
    bots_table.find("tr.user_row").remove();
 | 
			
		||||
 | 
			
		||||
    var active_users = [];
 | 
			
		||||
    var deactivated_users = [];
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user