diff --git a/src/Aspire.Dashboard/Components/Controls/GridValue.razor b/src/Aspire.Dashboard/Components/Controls/GridValue.razor index 5012fff70f..bf60cd5cc5 100644 --- a/src/Aspire.Dashboard/Components/Controls/GridValue.razor +++ b/src/Aspire.Dashboard/Components/Controls/GridValue.razor @@ -34,7 +34,12 @@ } @{ - (string, object)[] uncapturedAttributes = [("alt", PreCopyToolTip), ("title", string.Empty), ("aria-label", Loc[nameof(ControlsStrings.GridValueCopyToClipboard)])]; + (string, object)[] uncapturedAttributes = [ + ("alt", PreCopyToolTip), + ("title", string.Empty), + ("aria-label", Loc[nameof(ControlsStrings.GridValueCopyToClipboard)]), + ("tabindex", "0") + ]; }