mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
parent
6001a93475
commit
000896b2f7
1 changed files with 2 additions and 2 deletions
|
@ -592,8 +592,8 @@ pub(crate) fn attribute_absolute(
|
|||
match id {
|
||||
NodeNameFragment::Ident(id) => {
|
||||
let value = attribute_value(node);
|
||||
// ignore `let:`
|
||||
if id == "let" {
|
||||
// ignore `let:` and `clone:`
|
||||
if id == "let" || id == "clone" {
|
||||
None
|
||||
} else if id == "attr" {
|
||||
let key = &parts[1];
|
||||
|
|
Loading…
Reference in a new issue