Using the NGX-ADMIN template built on Angular 12 has been smooth sailing until an upgrade to Angular 13. With this simple version change, I am now faced with a perplexing issue that I can't seem to pinpoint or resolve.
I can confidently say that shifting from Angular 12 to 13 is what triggered this problem for me.
The same problem persists with Angular: 14.0.0-next.5
For more details on the issue, visit: https://github.com/akveo/ngx-admin/issues/5919
"@angular/animations": "^13.2.5",
"@angular/cdk": "^13.2.5",
"@angular/common": "^13.2.5",
"@angular/compiler": "^13.2.5",
"@angular/core": "^13.2.5",
"@angular/forms": "^13.2.5",
"@angular/material": "^13.2.5",
"@angular/platform-browser": "^13.2.5",
"@angular/platform-browser-dynamic": "^13.2.5",
"@angular/router": "^13.2.5",
After some thorough investigation, it seems like the root of the problem lies here:
<div class="cdk-describedby-message-container cdk-visually-hidden" style="visibility: hidden;"><div id="cdk-describedby-message-1">Sort</div></div>
Manually removing this snippet resolves the issue temporarily. But now the question remains - how do I prevent it from reappearing?