Fix #3948: re-render correctly when change progress indicator status.

This commit is contained in:
Ben 2024-03-05 22:59:55 +08:00
parent be155f8c6c
commit 3cc2d3260e

View File

@ -115,13 +115,13 @@
public void ShowProgressIndicator()
{
_progressIndicator = true;
Refresh();
StateHasChanged();
}
public void HideProgressIndicator()
{
_progressIndicator = false;
Refresh();
StateHasChanged();
}
private void DismissMessage()