3 writes to OnInteractionUpdated
Aspire.Dashboard (3)
Components\Dialogs\InteractionsTerminalDialog.razor.cs (3)
28
_content?.
OnInteractionUpdated
= null;
30
_content.
OnInteractionUpdated
= () => InvokeAsync(StateHasChanged);
38
_content?.
OnInteractionUpdated
= null;
3 references to OnInteractionUpdated
Aspire.Dashboard (2)
Model\Interaction\InteractionsTerminalDialogViewModel.cs (2)
15
if (
OnInteractionUpdated
is not null)
17
await
OnInteractionUpdated
().ConfigureAwait(false);
Aspire.Dashboard.Components.Tests (1)
Dialogs\InteractionsTerminalDialogTests.cs (1)
101
Assert.Null(viewModel.
OnInteractionUpdated
);