From a985ae566067d0040128177f961bdf5f8026ccae Mon Sep 17 00:00:00 2001 From: SleeplessOne1917 Date: Fri, 24 Feb 2023 08:58:15 -0500 Subject: [PATCH] fix: `` component `as_` property outputs correct attribute html (#573) --- meta/src/link.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/src/link.rs b/meta/src/link.rs index 7757800f4..708c59f1c 100644 --- a/meta/src/link.rs +++ b/meta/src/link.rs @@ -87,7 +87,7 @@ pub fn Link( let builder_el = leptos::leptos_dom::html::link(cx) .attr("id", &id) - .attr("as_", as_) + .attr("as", as_) .attr("crossorigin", crossorigin) .attr("disabled", disabled.unwrap_or(false)) .attr("fetchpriority", fetchpriority)