Notify state change
This commit is contained in:
@ -146,6 +146,8 @@
|
|||||||
{
|
{
|
||||||
targetCampaign.StartedAt = campaign.StartedAt;
|
targetCampaign.StartedAt = campaign.StartedAt;
|
||||||
|
|
||||||
|
StateHasChanged();
|
||||||
|
|
||||||
campaignsDataGrid.Reload();
|
campaignsDataGrid.Reload();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -166,6 +168,8 @@
|
|||||||
targetCampaign.Step = campaign.Step;
|
targetCampaign.Step = campaign.Step;
|
||||||
targetCampaign.Progress = campaign.Progress;
|
targetCampaign.Progress = campaign.Progress;
|
||||||
|
|
||||||
|
StateHasChanged();
|
||||||
|
|
||||||
campaignsDataGrid.Reload();
|
campaignsDataGrid.Reload();
|
||||||
|
|
||||||
if (expandedCampaign != null && expandedCampaign.Id == campaign.Id)
|
if (expandedCampaign != null && expandedCampaign.Id == campaign.Id)
|
||||||
@ -192,6 +196,8 @@
|
|||||||
{
|
{
|
||||||
targetOperation.StartedAt = operation.StartedAt;
|
targetOperation.StartedAt = operation.StartedAt;
|
||||||
|
|
||||||
|
StateHasChanged();
|
||||||
|
|
||||||
operationsDataGrid.Reload();
|
operationsDataGrid.Reload();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -209,6 +215,8 @@
|
|||||||
{
|
{
|
||||||
targetOperation.MessageGuid = operation.MessageGuid;
|
targetOperation.MessageGuid = operation.MessageGuid;
|
||||||
|
|
||||||
|
StateHasChanged();
|
||||||
|
|
||||||
operationsDataGrid.Reload();
|
operationsDataGrid.Reload();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -227,6 +235,8 @@
|
|||||||
targetOperation.EndedAt = operation.EndedAt;
|
targetOperation.EndedAt = operation.EndedAt;
|
||||||
targetOperation.FailureReason = operation.FailureReason;
|
targetOperation.FailureReason = operation.FailureReason;
|
||||||
|
|
||||||
|
StateHasChanged();
|
||||||
|
|
||||||
operationsDataGrid.Reload();
|
operationsDataGrid.Reload();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user