This app is used to collect information from a DB and make a .pdf file from it.
this.reportsService.getTelerikReport({ reportId: this.selectReportId, startDate: this.startDate, endDate: this.endDate, ReportItems: listCheckItems})
.then(response => {
this.fileLoading = false;
var file = new Blob([response], { type: "application/pdf" });
this.fileUrl = this.$sce.trustAsResourceUrl(URL.createObjectURL(file));
this.isReportGenerated = true;
I'm receiving an error only in the Microsoft Edge console. A lot of people say it's a security problem with the Edge browser.
Can anyone provide me help for this?