This commit is contained in:
Greg Johnston 2023-01-29 17:11:02 -05:00
parent f07fa0e0be
commit ce6a093f9f
1 changed files with 1 additions and 1 deletions

View File

@ -558,7 +558,7 @@ fn set_class_attribute_ssr(
template.push_str(" {}");
let value = value.as_ref();
holes.push(quote! {
match &(cx, #value).into_attribute(#cx).as_nameless_value_string()
&(cx, #value).into_attribute(#cx).as_nameless_value_string()
.map(|a| leptos::escape_attr(&a).to_string())
.unwrap_or_default(),
});