From fc9b4529372fa033c103d36577e9b74c4efb0ab6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Fri, 15 Dec 2017 14:54:58 +0300 Subject: [PATCH] Remove todo. --- .../wwwroot/modules/identity/views/users/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Volo.Abp.Identity.Web/wwwroot/modules/identity/views/users/index.js b/src/Volo.Abp.Identity.Web/wwwroot/modules/identity/views/users/index.js index 5e66c9d999..bfc6bceae0 100644 --- a/src/Volo.Abp.Identity.Web/wwwroot/modules/identity/views/users/index.js +++ b/src/Volo.Abp.Identity.Web/wwwroot/modules/identity/views/users/index.js @@ -1,6 +1,6 @@ (function() { - var _l = abp.localization.getResource('AbpIdentity'); //TODO: AbpIdentityWeb to const + var l = abp.localization.getResource('AbpIdentity'); var _identityUserAppService = volo.abp.identity.identityUser; var _editModal = new abp.ModalManager({ @@ -74,7 +74,7 @@ var id = $(this).data('id'); var userName = $(this).data('userName'); - if (confirm(_l('UserDeletionConfirmationMessage', userName))) { + if (confirm(l('UserDeletionConfirmationMessage', userName))) { _identityUserAppService .delete(id) .then(function () {