SEBESTYEN
SEBESTYEN
I had the same problem while opening multiple Toaster in sync with no delay. You need all your call to the toaster to be async and add a delay after...
A workaround has been suggested in issue [#193](https://github.com/SamProf/MatBlazor/issues/193#issuecomment-521898048) It puts tabs on multiple lines, I'm aware it's not ideal but it works for me.
MatToaster.Add(....); await Task.Delay(100); MatToaster.Add(....); await Task.Delay(100);
I used Salanford comment but for nullable Date you still have to use .ToLocalTime on the getter ... ``` public DateTime RedactionDate { get => Item.RedactionDate; set => Item.RedactionDate =...
Glad it helped We shipped a new version on MatBlazor last month, everything's fine except for memory conumption on Blazor Server We need to update our Put logic to avoid...