diff --git a/IRaCIS.Core.Application/Service/Management/UserService.cs b/IRaCIS.Core.Application/Service/Management/UserService.cs index c81eb9c46..2e52e8f6b 100644 --- a/IRaCIS.Core.Application/Service/Management/UserService.cs +++ b/IRaCIS.Core.Application/Service/Management/UserService.cs @@ -413,7 +413,7 @@ namespace IRaCIS.Core.Application.Service var result = await (userQuery.FirstOrDefaultAsync()).IfNullThrowException(); result.AccountList = _userRepository.Where(t => t.EMail == result.EMail && t.UserTypeEnum != UserTypeEnum.SuperAdmin) - .ProjectTo(_mapper.ConfigurationProvider).ToList(); + .ProjectTo(_mapper.ConfigurationProvider).OrderBy(t=>t.UserTypeShortName).ToList(); return result; }