mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-04 01:49:11 +00:00
fixed "http_equiv" in meta to generate "http-equiv" instead of "http_equiv" (#1277)
This commit is contained in:
parent
c10fd9ab6d
commit
c9790860a5
1 changed files with 1 additions and 1 deletions
|
@ -332,7 +332,7 @@ builder_constructors! {
|
||||||
meta None {
|
meta None {
|
||||||
charset: String DEFAULT, // FIXME IANA standard names
|
charset: String DEFAULT, // FIXME IANA standard names
|
||||||
content: String DEFAULT,
|
content: String DEFAULT,
|
||||||
http_equiv: HTTPEquiv DEFAULT,
|
http_equiv: String "http-equiv",
|
||||||
name: Metadata DEFAULT,
|
name: Metadata DEFAULT,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue