my Application is a Blazor Server App. So my problem: I have a page, which shows a loading screen until the data is loaded. As soon as the data is loaded it displays it in a table. This data I then want to import into Excel (which uses Internet Explorer)
if(docs == null) {
//SHOW LOADING
} else {
//SHOW DATA IN TABLE
}
So I tested it and it worked fine. Then when I checked it sometime later it suddenly stopped working for no reason. It now only shows the Loading Part and never switches (in Chrome, Edge, and Firefox it works just fine.)
Then I looked into the Console of Intenet Explorer and found this Error:
CSS3111: @font-face encountered unknown error.
Since I had no idea what to do I looked it up but found nothing that could help me. I then deleted every font-family keyword in CSS and found no @font-face type. Can someone please help me?