Skip to content

Commit

Permalink
on the on print function the arguments passed are declared and never …
Browse files Browse the repository at this point in the history
…used so decided to change the data type
  • Loading branch information
mellcky committed Jan 17, 2025
1 parent 01e0a6e commit 7e51ec3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export class PatientHistoryDataComponent implements OnInit {
);
}

onPrint(e: any, visitData: any): void {
onPrint(e: Event, visitData: any): void {
// console.log("Patient visit", this.visit);
// console.log("Patient History", this.visitHistory);
let contents: string;
Expand Down

0 comments on commit 7e51ec3

Please sign in to comment.