maliming
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
2 deletions
-
modules/identity/src/Volo.Abp.Identity.Web/Pages/Identity/Users/index.js
|
|
|
@ -81,7 +81,6 @@ |
|
|
|
data: 'userName', |
|
|
|
render: function (data, type, row) { |
|
|
|
row.userName = $.fn.dataTable.render.text().display(row.userName); |
|
|
|
var roleHtml = row.userName; |
|
|
|
if (!row.isActive) { |
|
|
|
return '<i data-toggle="tooltip" data-placement="top" title="' + |
|
|
|
l('ThisUserIsNotActiveMessage') + |
|
|
|
@ -89,7 +88,7 @@ |
|
|
|
'<span class="opc-65">' + row.userName + '</span>'; |
|
|
|
} |
|
|
|
|
|
|
|
return roleHtml; |
|
|
|
return row.userName; |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
|