Forgot to add in previous commit composer.ts file - bug fix in imports

This commit is contained in:
Konstantina Galouni 2023-07-05 11:41:42 +03:00
parent a6dee41979
commit 13b7f90707
1 changed files with 1 additions and 5 deletions

View File

@ -1,10 +1,6 @@
import {Email} from "./email";
import {Body} from "./body";
import {FormArray} from "@angular/forms";
import {properties} from "../../../../environments/environment";
import {Stakeholder} from "../../monitor/entities/stakeholder";
import {Report} from "../../../../cache-indicators";
import {error} from "protractor";
export class Composer {
private static noteBodySize = "14px";
@ -213,7 +209,7 @@ export class Composer {
return email;
}
public static composeEmailToReportCachingProcess(report: Report) {
public static composeEmailToReportCachingProcess(report: any) {
let email: Email = new Email();
email.recipients = [report.creator];
email.subject = 'OpenAIRE | Monitor Dashboard - ' + report.name + '\'s caching process has been finished';