In my Angular web application, I am using the PrimeNg modal extension to display modal popups. I have successfully passed a component to the modal service with the following code:
const ref = this.dialogService.open(LogsComponent, {
data: {
releaseID:row.release_id
},
header:'Migration Logs',
width:'100%',
height:'100%'
});
Although I am able to retrieve the ID and display a table in the modal, I am facing an issue where the modal does not appear as full screen even with a width and height of 100%. I want the modal to be maximized similar to how it is for the PrimeNg Dialog.