I could need some help regarding this issue: When I set my scrollHeight of the p-table to flex it won't show up anymore. If I set it for example to 400px it will displayed as expected. The structure of my HTML is the following:
<mat-drawer-container>
<mat-drawer-content [style]="'overflow: hidden'">
<mat-card [style]="'overflow: hidden'">
<mat-card-content [style]="'overflow: auto'">
<p-table [value]="dataSource.data" [scrollable]='true' scrollHeight="flex">
...
</p-table>
</mat-card-content>
</mat-card>
</mat-drawer-content>
</mat-drawer-container>