Notify state change
This commit is contained in:
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user