I'm using the document editor in Blazor WASM. I have tested on 3 browsers; Firefox, MS Edge and Chrome, all updated to the current version.
In Chrome and Firefox, I can succesfully load documents.
In Edge, I get a blank document with no content.
Am I doing something wrong, or is this a bug?
Relevant code snippet:
using var stream = new MemoryStream(_template.Content);
_template.Content = null;
_loadedTemplateId = _selectedTemplateId;
_renderEditor = true;
StateHasChanged();
await _documentContainer!.ResizeAsync();
await _documentContainer.DocumentEditor.ResizeAsync();
await _documentContainer.DocumentEditor.OpenAsync(stream, ImportFormatType.Docx);
_documentContainer.Toolbar.EnableItemAsync(0,false);
_contentHasChanged = false;
I'm on SyncFusion components version 25.2.7.
The project is .NET 8.