Merge pull request #4500 from leptos-rs/fix-4481

fix: wrong path for `IntoAnyAttribute` in macro expansion from #4481
This commit is contained in:
Greg Johnston
2025-12-19 15:46:56 -05:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@@ -2047,7 +2047,7 @@ dependencies = [
[[package]]
name = "leptos_macro"
version = "0.8.13"
version = "0.8.14"
dependencies = [
"attribute-derive",
"cfg-if",

View File

@@ -1,6 +1,6 @@
[package]
name = "leptos_macro"
version = "0.8.13"
version = "0.8.14"
authors = ["Greg Johnston"]
license = "MIT"
repository = "https://github.com/leptos-rs/leptos"

View File

@@ -177,7 +177,7 @@ pub(crate) fn component_to_tokens(
if cfg!(feature = "__internal_erase_components") {
quote! {
.add_any_attr({
vec![#(::leptos::html::attribute::any_attribute::IntoAnyAttribute::into_any_attr(#spreads),)*]
vec![#(::leptos::attr::any_attribute::IntoAnyAttribute::into_any_attr(#spreads),)*]
})
}
} else {