mirror of
https://github.com/DioxusLabs/dioxus
synced 2025-02-17 06:08:26 +00:00
fix release build
This commit is contained in:
parent
a170aa76e0
commit
ef76453422
3 changed files with 9 additions and 6 deletions
|
@ -11,6 +11,7 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.66"
|
||||
async-rwlock = "1.3.0"
|
||||
dioxus = { path="../dioxus" }
|
||||
dioxus-router-core = { path = "../router-core"}
|
||||
|
|
|
@ -54,11 +54,12 @@ pub fn Link<'a>(cx: Scope<'a, LinkProps<'a>>) -> Element {
|
|||
let router = match use_router_internal(&cx) {
|
||||
Some(r) => r,
|
||||
None => {
|
||||
error!("`Link` must have access to a parent router, will be inactive");
|
||||
let msg = "`Link` must have access to a parent router";
|
||||
error!("{msg}, will be inactive");
|
||||
#[cfg(debug_assertions)]
|
||||
panic!("`Link` must have access to a parent router");
|
||||
panic!("{}", msg);
|
||||
#[cfg(not(debug_assertions))]
|
||||
return None;
|
||||
anyhow::bail!("{msg}");
|
||||
}
|
||||
};
|
||||
let state = loop {
|
||||
|
|
|
@ -18,11 +18,12 @@ pub fn Outlet(cx: Scope<OutletProps>) -> Element {
|
|||
let router = match use_router_internal(&cx) {
|
||||
Some(r) => r,
|
||||
None => {
|
||||
error!("`Outlet` must have access to a parent router, will be inactive");
|
||||
let msg = "`Outlet` must have access to a parent router";
|
||||
error!("{msg}, will be inactive");
|
||||
#[cfg(debug_assertions)]
|
||||
panic!("`Outlet` must have access to a parent router");
|
||||
panic!("{}", msg);
|
||||
#[cfg(not(debug_assertions))]
|
||||
return None;
|
||||
anyhow::bail!("{msg}");
|
||||
}
|
||||
};
|
||||
let state = loop {
|
||||
|
|
Loading…
Add table
Reference in a new issue