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..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 @@ -86,10 +86,13 @@ - check_circle + check_circle Verified + - cancel + cancel Not-verified
@@ -110,9 +113,13 @@ check_circle + Verified cancel + Not-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 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) } }) }