Added navigation manager to assistant base class

This commit is contained in:
Thorsten Sommer 2024-08-18 11:16:18 +02:00
parent bc0755e363
commit 4293ae6850
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -24,6 +24,9 @@ public abstract partial class AssistantBase : ComponentBase
[Inject]
protected Rust Rust { get; init; } = null!;
[Inject]
protected NavigationManager NavigationManager { get; init; } = null!;
internal const string AFTER_RESULT_DIV_ID = "afterAssistantResult";
internal const string ASSISTANT_RESULT_DIV_ID = "assistantResult";