mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
cargo fmt
This commit is contained in:
parent
b1ac17995d
commit
2ef36c65fd
1 changed files with 7 additions and 6 deletions
|
@ -393,13 +393,14 @@ impl View {
|
||||||
} else if name == "inner_html" {
|
} else if name == "inner_html" {
|
||||||
inner_html = Some(value);
|
inner_html = Some(value);
|
||||||
None
|
None
|
||||||
}
|
} else {
|
||||||
else {
|
Some(
|
||||||
Some(format!(
|
format!(
|
||||||
" {name}=\"{}\"",
|
" {name}=\"{}\"",
|
||||||
html_escape::encode_double_quoted_attribute(&value)
|
html_escape::encode_double_quoted_attribute(&value)
|
||||||
|
)
|
||||||
|
.into(),
|
||||||
)
|
)
|
||||||
.into())
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.join("");
|
.join("");
|
||||||
|
|
Loading…
Reference in a new issue