From 2da163430a9412398c4b26e530564b9d070a4f8e Mon Sep 17 00:00:00 2001 From: Robin Naundorf Date: Tue, 26 Apr 2016 08:48:11 +0200 Subject: [PATCH] Fixed issue with undefined values in admin tab --- static/resources/js/project.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/resources/js/project.js b/static/resources/js/project.js index 69ab51a5f..97da2d6f9 100644 --- a/static/resources/js/project.js +++ b/static/resources/js/project.js @@ -161,8 +161,8 @@ jQuery(function(){ $("#tblUser tbody tr").remove(); $.each(data || [], function(i, e){ var row = '' + - '' + e.Username + '' + - '' + e.Email + ''; + '' + e.username + '' + + '' + e.email + ''; if(e.HasAdminRole == 1){ row += ''; } else {