Fix user creation date on localized page

pull/5256/head
Chocobozzz 2022-09-14 09:48:43 +02:00
parent db312c7023
commit fc3784583c
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 0 additions and 1 deletions

View File

@ -59,7 +59,6 @@ export class UserAdminService {
return this.authHttp.get<ResultList<UserServerModel>>(UserService.BASE_USERS_URL, { params })
.pipe(
map(res => this.restExtractor.convertResultListDateToHuman(res)),
map(res => this.restExtractor.applyToResultListData(res, this.formatUser.bind(this))),
catchError(err => this.restExtractor.handleError(err))
)