mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
fix: CI - method not found in ArcTrigger
This commit is contained in:
parent
b42d86e600
commit
fd19dd38f6
1 changed files with 2 additions and 2 deletions
|
@ -124,7 +124,7 @@ where
|
|||
ScopedFuture::new(async move {
|
||||
let triggers = join_all(loaders).await;
|
||||
for trigger in triggers {
|
||||
trigger.trigger();
|
||||
trigger.notify();
|
||||
}
|
||||
matched_view.rebuild(&mut *view.borrow_mut());
|
||||
})
|
||||
|
@ -179,7 +179,7 @@ where
|
|||
let triggers = join_all(loaders).await;
|
||||
// tell each one of the outlet triggers that it's ready
|
||||
for trigger in triggers {
|
||||
trigger.trigger();
|
||||
trigger.notify();
|
||||
}
|
||||
if let Some(loc) = location {
|
||||
loc.ready_to_complete();
|
||||
|
|
Loading…
Reference in a new issue