We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02af028 commit 6116fd8Copy full SHA for 6116fd8
src/Aspire.Dashboard/Components/Dialogs/InteractionsInputDialog.razor.cs
@@ -3,6 +3,7 @@
3
4
using Aspire.Dashboard.Model.Interaction;
5
using Aspire.Dashboard.Model.Markdown;
6
+using Aspire.Dashboard.Model.Otlp;
7
using Aspire.Dashboard.Resources;
8
using Aspire.DashboardService.Proto.V1;
9
using Microsoft.AspNetCore.Components;
@@ -91,6 +92,10 @@ protected override Task OnAfterRenderAsync(bool firstRender)
91
92
{
93
numberInput.FocusAsync();
94
}
95
+ else if (firstInputElement is FluentInputBase<SelectViewModel<string>> selectInput)
96
+ {
97
+ selectInput.FocusAsync();
98
+ }
99
100
101
0 commit comments