Merge pull request #934 from ruwany/master

Adding fix for https://github.com/wso2/product-iots/issues/667
This commit is contained in:
Charitha Goonetilleke 2017-08-31 13:44:35 +05:30 committed by GitHub
commit 0f7e488d2b

View File

@ -294,7 +294,10 @@ function loadUsers() {
//noinspection JSUnusedLocalSymbols
var fnCreatedRow = function (nRow, aData, iDataIndex) {
var adminUser = $("#user-table").data("user");
if (adminUser !== aData["filter"]) {
$(nRow).attr('data-type', 'selectable');
}
$(nRow).attr('data-username', aData["filter"]);
};