mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
Fix typo in RenderService (#658)
This commit is contained in:
parent
dd59cf0392
commit
f794d555e3
@ -73,6 +73,7 @@
|
||||
|
||||
- #### 🛠 Fixes
|
||||
|
||||
- Fixed JS typo in RenderService. This was causing animation frames to not be dropped correctly. [[@jstarry], [#658](https://github.com/yewstack/yew/pull/658)]
|
||||
- Fixed `VNode` orphaning bug when destroying `VTag` elements. This caused some `Component`s to not be properly destroyed when they should have been. [[@hgzimmerman], [#651](https://github.com/yewstack/yew/pull/651)]
|
||||
- Fix mishandling of Properties `where` clause in derive_props macro [[@astraw], [#640](https://github.com/yewstack/yew/pull/640)]
|
||||
|
||||
|
||||
@ -54,7 +54,7 @@ impl Task for RenderTask {
|
||||
let handle = self.0.take().expect("tried to cancel render twice");
|
||||
js! { @(no_return)
|
||||
var handle = @{handle};
|
||||
cancelAnimationFrame(handle.timeout_id);
|
||||
cancelAnimationFrame(handle.render_id);
|
||||
handle.callback.drop();
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user