From d67f3a159cf49d943804bfcad0ad081d23229c2a Mon Sep 17 00:00:00 2001 From: garima468 Date: Wed, 24 Jul 2024 12:42:57 +0530 Subject: [PATCH 1/3] KB-5841 fix --- .../components/user-cards/user-card.component.html | 11 +++++++++-- .../components/user-cards/user-card.component.scss | 5 +++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/project/ws/app/src/lib/routes/home/components/user-cards/user-card.component.html b/project/ws/app/src/lib/routes/home/components/user-cards/user-card.component.html index 16a7d598d..93d5078dc 100644 --- a/project/ws/app/src/lib/routes/home/components/user-cards/user-card.component.html +++ b/project/ws/app/src/lib/routes/home/components/user-cards/user-card.component.html @@ -86,10 +86,13 @@ - check_circle + check_circle Verified + - cancel + cancel Non-verified
@@ -110,9 +113,13 @@ check_circle + Verified cancel + Non-verified
diff --git a/project/ws/app/src/lib/routes/home/components/user-cards/user-card.component.scss b/project/ws/app/src/lib/routes/home/components/user-cards/user-card.component.scss index faac511cb..cd9983174 100644 --- a/project/ws/app/src/lib/routes/home/components/user-cards/user-card.component.scss +++ b/project/ws/app/src/lib/routes/home/components/user-cards/user-card.component.scss @@ -368,4 +368,9 @@ label { border-radius: 4px; border: 1px solid rgba(0, 0, 0, .14); font-family: Lato; +} + +.status-text { + position: relative; + top: -2px; } \ No newline at end of file From 03e6507d16a3fa7a6c78254402026df646a9ca86 Mon Sep 17 00:00:00 2001 From: garima468 Date: Wed, 24 Jul 2024 16:46:10 +0530 Subject: [PATCH 2/3] issue fixed --- .../home/components/user-cards/user-card.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/ws/app/src/lib/routes/home/components/user-cards/user-card.component.html b/project/ws/app/src/lib/routes/home/components/user-cards/user-card.component.html index 93d5078dc..c6b9f1bf5 100644 --- a/project/ws/app/src/lib/routes/home/components/user-cards/user-card.component.html +++ b/project/ws/app/src/lib/routes/home/components/user-cards/user-card.component.html @@ -92,7 +92,7 @@ cancel Non-verified + class="mat-caption status-text ws-mat-black40-text"> Not-verified
@@ -119,7 +119,7 @@ *ngIf="user?.profileDetails?.profileDesignationStatus === 'NOT-VERIFIED'"> cancel Non-verified + class="mat-caption status-text ws-mat-black40-text"> Not-verified
From 1ceb59d04df46cb3df6f0aaf08cc7cb712cae283 Mon Sep 17 00:00:00 2001 From: Christyfernandes Date: Thu, 25 Jul 2024 18:48:43 +0530 Subject: [PATCH 3/3] Task #0000: Lines breaking issue fix on window resize --- .../home/routes/odcs-mapping/odcs-mapping.component.html | 6 +++--- .../home/routes/odcs-mapping/odcs-mapping.component.ts | 9 +++++++-- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/project/ws/app/src/lib/routes/home/routes/odcs-mapping/odcs-mapping.component.html b/project/ws/app/src/lib/routes/home/routes/odcs-mapping/odcs-mapping.component.html index 5cfc613fe..473c66018 100644 --- a/project/ws/app/src/lib/routes/home/routes/odcs-mapping/odcs-mapping.component.html +++ b/project/ws/app/src/lib/routes/home/routes/odcs-mapping/odcs-mapping.component.html @@ -11,9 +11,9 @@

{{odcConfig?.mainHeading}}

{{odcConfig?.topsection?.heading}} keyboard_arrow_up + (click)="showTopSection = !showTopSection; callResizeEvent($event)">keyboard_arrow_up keyboard_arrow_down + (click)="showTopSection = !showTopSection; callResizeEvent($event)">keyboard_arrow_down
@@ -32,7 +32,7 @@

{{odcConfig?.mainHeading}}

-
+
diff --git a/project/ws/app/src/lib/routes/home/routes/odcs-mapping/odcs-mapping.component.ts b/project/ws/app/src/lib/routes/home/routes/odcs-mapping/odcs-mapping.component.ts index e9a93a2d7..5753888b3 100644 --- a/project/ws/app/src/lib/routes/home/routes/odcs-mapping/odcs-mapping.component.ts +++ b/project/ws/app/src/lib/routes/home/routes/odcs-mapping/odcs-mapping.component.ts @@ -19,7 +19,6 @@ export class OdcsMappingComponent implements OnInit { showLoader = false loaderMsg = '' orgId = '' - constructor( private activateRoute: ActivatedRoute, private designationsService: DesignationsService, @@ -50,6 +49,12 @@ export class OdcsMappingComponent implements OnInit { } } + callResizeEvent(_event: any) { + setTimeout(() => { + window.dispatchEvent(new Event('resize')) + }, 100) + } + createFreamwork() { this.loaderMsg = this.odcConfig.frameworkCreationMSg const departmentName = _.get(this.configSvc, 'userProfile.departmentName').replace(/\s/g, '') @@ -74,7 +79,7 @@ export class OdcsMappingComponent implements OnInit { } else { setTimeout(() => { this.getOrgReadData() - }, 10000) + }, 10000) } }) }