diff --git a/Moonlight/Features/Servers/UI/NodeComponents/NodeAllocations.razor b/Moonlight/Features/Servers/UI/NodeComponents/NodeAllocations.razor index 4e54c513..ac10ad0b 100644 --- a/Moonlight/Features/Servers/UI/NodeComponents/NodeAllocations.razor +++ b/Moonlight/Features/Servers/UI/NodeComponents/NodeAllocations.razor @@ -92,7 +92,7 @@ NodeRepository.Update(Node!); await ToastService.Success($"Added {added} allocations and skipped {skipped} ports due to existing allocations"); - await Crud.Refresh(); + await Crud.Refresh(fullRefresh: true); } private async Task DeleteAllAllocations() @@ -115,7 +115,7 @@ } await ToastService.Success("Successfully deleted allocations"); - await Crud.Refresh(); + await Crud.Refresh(fullRefresh: true); }); }