diff options
author | Sunder Tattavarada <statta@research.att.com> | 2020-05-20 14:14:12 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-05-20 14:14:12 +0000 |
commit | 388d1164b2cbf3435b5f38cbfd8d597d4a9567b0 (patch) | |
tree | 83480ce052f0a24ed9907b02f23137a421dc06ed /portal-FE-common/src/app | |
parent | 0a538f1113c1236e1ce8ba589a9446f6848e1844 (diff) | |
parent | 3f7d8f642da3abb81749cc59a3bd7e2e28c06a52 (diff) |
Merge "Fixed userbar issue on home page"
Diffstat (limited to 'portal-FE-common/src/app')
-rw-r--r-- | portal-FE-common/src/app/layout/components/userbar/userbar.component.scss | 4 | ||||
-rw-r--r-- | portal-FE-common/src/app/layout/components/userbar/userbar.component.ts | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/portal-FE-common/src/app/layout/components/userbar/userbar.component.scss b/portal-FE-common/src/app/layout/components/userbar/userbar.component.scss index 451adfc7..7e0edc10 100644 --- a/portal-FE-common/src/app/layout/components/userbar/userbar.component.scss +++ b/portal-FE-common/src/app/layout/components/userbar/userbar.component.scss @@ -108,8 +108,8 @@ button { display: block; margin-left: auto; margin-right: auto; - height: 55px; - width: 55px; + height: 45px; + width: 45px; border-radius: 50%; } diff --git a/portal-FE-common/src/app/layout/components/userbar/userbar.component.ts b/portal-FE-common/src/app/layout/components/userbar/userbar.component.ts index 2136abb2..d3680c9c 100644 --- a/portal-FE-common/src/app/layout/components/userbar/userbar.component.ts +++ b/portal-FE-common/src/app/layout/components/userbar/userbar.component.ts @@ -82,7 +82,7 @@ export class UserbarComponent implements OnInit { // $log.error('UserbarCtrl::updateActiveUsers: failed to get active user'); this.stop(); } else { - var maxItems = 25; + var maxItems = 5; if (_res.length < maxItems) maxItems = _res.length; for (var i = 0; i < maxItems; i++) { |