Skip to content

Commit

Permalink
Merge pull request #86 from Sohith-code/cbrelease-4.8.19
Browse files Browse the repository at this point in the history
Close on outside click on bulkupload email popup
  • Loading branch information
christyfernandes authored Nov 8, 2024
2 parents 633038a + 7858b2b commit ccd1781
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -252,5 +252,4 @@ describe('BulkUploadApprovalComponent', () => {
})
})


})
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export class BulkUploadApprovalComponent implements OnInit, AfterViewInit, OnDes
verifyOTP(contactType: string): void {
const dialogRef = this.dialog.open(VerifyOtpComponent, {
data: { type: contactType, email: this.userProfile.email, mobile: this.userProfile.mobile },
disableClose: true,
disableClose: false,
panelClass: 'common-modal',
})

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export class BulkUploadComponent implements OnInit, OnDestroy, AfterViewInit {
verifyOTP(contactType: string): void {
const dialogRef = this.dialog.open(VerifyOtpComponent, {
data: { type: contactType, email: this.userProfile.email, mobile: this.userProfile.mobile },
disableClose: true,
disableClose: false,
panelClass: 'common-modal',
})

Expand Down Expand Up @@ -218,7 +218,7 @@ export class BulkUploadComponent implements OnInit, OnDestroy, AfterViewInit {
clearInterval(this.interval)
this.getBulkStatusList()
}
}, 1000)
}, 1000)
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export class BulkUploadOdcsComponent implements OnInit, OnDestroy, AfterViewInit
verifyOTP(contactType: string): void {
const dialogRef = this.dialog.open(VerifyOtpComponent, {
data: { type: contactType, email: this.userProfile.email, mobile: this.userProfile.mobile },
disableClose: true,
disableClose: false,
panelClass: 'common-modal',
})

Expand Down Expand Up @@ -214,6 +214,6 @@ export class BulkUploadOdcsComponent implements OnInit, OnDestroy, AfterViewInit
clearInterval(this.interval)
this.getBulkStatusList()
}
}, 1000)
}, 1000)
}
}

0 comments on commit ccd1781

Please sign in to comment.