Skip to content

Commit

Permalink
Merge pull request #563 from Madhuravas/develop
Browse files Browse the repository at this point in the history
MOSIP-28032 calling timer function after getting the response from the send otp API.
  • Loading branch information
aranaravi authored Nov 1, 2023
2 parents c3f0781 + 35aeb0e commit b17a85d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ export class DownloadUinComponent implements OnInit {
this.otpTimeMinutes = this.appConfigService.getConfig()['mosip.kernel.otp.expiry-time']/60;
this.displaySeconds = "00";
this.generateOTP(this.data)
this.setOtpTime()
}

generateOTP(data: any) {
Expand Down Expand Up @@ -148,6 +147,7 @@ export class DownloadUinComponent implements OnInit {
if(response['response']){
this.resetBtnDisable = true;
this.inputDisabled = false;
this.setOtpTime()
}
},
error => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,12 @@ ul li:last-child hr{
border-radius: 10px;
}

::ng-deep .cdk-global-overlay-wrapper {
align-items: baseline !important;
margin-top: 25em !important;
}


::ng-deep .mat-tooltip {
background-color: #ffffff !important;
color: black !important;
Expand Down

0 comments on commit b17a85d

Please sign in to comment.