From 0a5e486d7ddc36c802ffdd5746207a83ed5b7bcb Mon Sep 17 00:00:00 2001 From: Benjamin Vertonghen Date: Mon, 19 Aug 2019 19:16:33 +0200 Subject: [PATCH] [Fix] CaptureUnmatchedAttributes => CaptureUnmatchedValues (#13913) --- aspnetcore/blazor/components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/blazor/components.md b/aspnetcore/blazor/components.md index 39a62a6687..24e4090536 100644 --- a/aspnetcore/blazor/components.md +++ b/aspnetcore/blazor/components.md @@ -187,7 +187,7 @@ To accept arbitrary attributes, define a component parameter using the `[Paramet ```cshtml @code { - [Parameter(CaptureUnmatchedAttributes = true)] + [Parameter(CaptureUnmatchedValues = true)] public Dictionary InputAttributes { get; set; } } ```