From d8432b98fea241a0f338a177de36f00c2d3dd2cd Mon Sep 17 00:00:00 2001 From: Lucas Morgan Date: Fri, 1 Nov 2024 18:42:35 -0500 Subject: [PATCH] Fix --- Shogi.UI/Shared/Stretch.razor | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Shogi.UI/Shared/Stretch.razor b/Shogi.UI/Shared/Stretch.razor index c89e075..aa2a395 100644 --- a/Shogi.UI/Shared/Stretch.razor +++ b/Shogi.UI/Shared/Stretch.razor @@ -1,7 +1,10 @@ -
+
@ChildContent
@code { + [Parameter(CaptureUnmatchedValues = true)] + public Dictionary InputAttributes { get; set; } + [Parameter] public RenderFragment ChildContent { get; set; } = default!; }