mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
add error log when root element isn't found (#1724)
This commit is contained in:
parent
1ec230ae29
commit
2321c1ad44
2 changed files with 11 additions and 1 deletions
|
@ -42,6 +42,7 @@ features = [
|
|||
"HtmlFormElement",
|
||||
"Text",
|
||||
"Window",
|
||||
"console",
|
||||
]
|
||||
|
||||
[features]
|
||||
|
|
|
@ -45,7 +45,16 @@ impl WebsysDom {
|
|||
let document = load_document();
|
||||
let root = match document.get_element_by_id(&cfg.rootname) {
|
||||
Some(root) => root,
|
||||
None => document.create_element("body").ok().unwrap(),
|
||||
None => {
|
||||
web_sys::console::error_1(
|
||||
&format!(
|
||||
"element '#{}' not found. mounting to the body.",
|
||||
cfg.rootname
|
||||
)
|
||||
.into(),
|
||||
);
|
||||
document.create_element("body").ok().unwrap()
|
||||
}
|
||||
};
|
||||
let interpreter = Channel::default();
|
||||
|
||||
|
|
Loading…
Reference in a new issue