mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
Fix typo in RouterService struct's "registered_routes" field name
This was "registerd_routes", missing an "e".
This commit is contained in:
parent
e22ba5b1e5
commit
d367e0f89f
1 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ use dioxus_core::ScopeId;
|
|||
pub struct RouterService {
|
||||
pub(crate) regen_route: Rc<dyn Fn(ScopeId)>,
|
||||
history: Rc<RefCell<BrowserHistory>>,
|
||||
registerd_routes: RefCell<RouteSlot>,
|
||||
registered_routes: RefCell<RouteSlot>,
|
||||
slots: Rc<RefCell<Vec<(ScopeId, String)>>>,
|
||||
root_found: Rc<Cell<bool>>,
|
||||
cur_root: RefCell<String>,
|
||||
|
@ -53,7 +53,7 @@ impl RouterService {
|
|||
});
|
||||
|
||||
Self {
|
||||
registerd_routes: RefCell::new(RouteSlot::Routes {
|
||||
registered_routes: RefCell::new(RouteSlot::Routes {
|
||||
partial: String::from("/"),
|
||||
total: String::from("/"),
|
||||
rest: Vec::new(),
|
||||
|
|
Loading…
Reference in a new issue