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" {
|
||||
inner_html = Some(value);
|
||||
None
|
||||
}
|
||||
else {
|
||||
Some(format!(
|
||||
} else {
|
||||
Some(
|
||||
format!(
|
||||
" {name}=\"{}\"",
|
||||
html_escape::encode_double_quoted_attribute(&value)
|
||||
)
|
||||
.into())
|
||||
.into(),
|
||||
)
|
||||
}
|
||||
})
|
||||
.join("");
|
||||
|
|
Loading…
Reference in a new issue