Add dynamic operations change UI

This commit is contained in:
2025-11-05 16:59:39 +09:00
parent 05e24d4eae
commit 6e191f3676
5 changed files with 124 additions and 6 deletions

View File

@ -84,6 +84,8 @@ namespace Hcs.WebApp.BackgroundServices
await headquartersService.SetOperationEndedWithFailAsync(entry.operation.Id, e.CombineMessages());
entry.state.done = true;
state.InvokeOnOperationEnded(entry.operation);
}
entry.state.attempt++;
@ -93,6 +95,7 @@ namespace Hcs.WebApp.BackgroundServices
if (entry.state.done)
{
state.UnsetProcessingOperation(entry.operation);
state.InvokeOnOperationEnded(entry.operation);
}
}