79303104

Date: 2024-12-23 12:42:48
Score: 1
Natty:
Report link

I managed to solve the issue. The problem was due to hiding the overlay container:

styles.scss

.cdk-overlay-container {
    display: none !important;
}

After removing that, the options were displayed.

I added the display: none in the first place because the overlay containers used to be positioned wrongly before adding the paginator, but this solved the position issue:

styles.scss

@use '@angular/material' as mat;
@include mat.core();
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: AAA KLN