Notify state change

This commit is contained in:
2025-11-05 17:30:26 +09:00
parent 652f35c5c4
commit 0b90c7fb22

View File

@ -146,6 +146,8 @@
{
targetCampaign.StartedAt = campaign.StartedAt;
StateHasChanged();
campaignsDataGrid.Reload();
}
@ -166,6 +168,8 @@
targetCampaign.Step = campaign.Step;
targetCampaign.Progress = campaign.Progress;
StateHasChanged();
campaignsDataGrid.Reload();
if (expandedCampaign != null && expandedCampaign.Id == campaign.Id)
@ -192,6 +196,8 @@
{
targetOperation.StartedAt = operation.StartedAt;
StateHasChanged();
operationsDataGrid.Reload();
}
}
@ -209,6 +215,8 @@
{
targetOperation.MessageGuid = operation.MessageGuid;
StateHasChanged();
operationsDataGrid.Reload();
}
}
@ -227,6 +235,8 @@
targetOperation.EndedAt = operation.EndedAt;
targetOperation.FailureReason = operation.FailureReason;
StateHasChanged();
operationsDataGrid.Reload();
}
}