From 78b1e6393386c48b7429acb64b0695096a86c55f Mon Sep 17 00:00:00 2001 From: andrej romanov <50377758+auumgn@users.noreply.github.com> Date: Mon, 22 Jan 2024 20:57:00 +0200 Subject: [PATCH] fix icon errors --- ui/src/app/user/users.component.html | 79 ++++++++++++++-------------- ui/src/app/user/users.component.ts | 13 ++++- 2 files changed, 51 insertions(+), 41 deletions(-) diff --git a/ui/src/app/user/users.component.html b/ui/src/app/user/users.component.html index 09c997b54..040202310 100644 --- a/ui/src/app/user/users.component.html +++ b/ui/src/app/user/users.component.html @@ -2,12 +2,12 @@

Manage users

- +
@@ -34,28 +34,28 @@

- -

+ -
-
- -
- No users to show -
+
+
+
+ +
+ No users to show
-
- - - - - - --> -
+ + +
+
+
+

{{ itemCount }}

-
-
-

{{ itemCount }}

-
-
- -
+
+
diff --git a/ui/src/app/user/users.component.ts b/ui/src/app/user/users.component.ts index aedd2d1e7..a0bd40e8a 100644 --- a/ui/src/app/user/users.component.ts +++ b/ui/src/app/user/users.component.ts @@ -4,7 +4,15 @@ import { Subscription, filter } from 'rxjs' import { UserService } from './service/user.service' import { HttpErrorResponse } from '@angular/common/http' import { IUserPage, UserPage } from './model/user-page.model' -import { faCheckCircle, faSearch, faTimes, faTimesCircle } from '@fortawesome/free-solid-svg-icons' +import { + faCheckCircle, + faPencilAlt, + faPlus, + faSearch, + faSignInAlt, + faTimes, + faTimesCircle, +} from '@fortawesome/free-solid-svg-icons' import { AlertType, EventType, ITEMS_PER_PAGE } from '../app.constants' import { ActivatedRoute, Router } from '@angular/router' import { AccountService } from '../account/service/account.service' @@ -38,6 +46,9 @@ export class UsersComponent implements OnInit, OnDestroy { faCheckCircle = faCheckCircle faTimes = faTimes faSearch = faSearch + faPlus = faPlus + faPencilAlt = faPencilAlt + faSignInAlt = faSignInAlt DEFAULT_ADMIN = 'admin@orcid.org'