mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
fix double quotes in autoformatting
This commit is contained in:
parent
be4b0c801a
commit
1a17ca988c
2 changed files with 2 additions and 2 deletions
|
@ -215,7 +215,7 @@ impl Writer<'_> {
|
|||
write!(self.out, "{}", name)?;
|
||||
}
|
||||
ElementAttrName::Custom(name) => {
|
||||
write!(self.out, "\"{}\"", name.to_token_stream())?;
|
||||
write!(self.out, "{}", name.to_token_stream())?;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ rsx! {
|
|||
}
|
||||
|
||||
// No children, minimal props
|
||||
img { class: "mb-6 mx-auto h-24", src: "artemis-assets/images/friends.png", alt: "" }
|
||||
img { class: "mb-6 mx-auto h-24", src: "artemis-assets/images/friends.png" }
|
||||
|
||||
// One level compression
|
||||
div {
|
||||
|
|
Loading…
Reference in a new issue