Open
Description
Which component is affected?
Qwik City (routing)
Describe the bug
Doing:
Trying to run()
multiple actions when a button is clicked.
<button onClick$={() => {
foo.run();
bar.run();
}}>Foo Bar</button>
Expect:
These actions have run.
Happened:
Randomly selected only one action has run.
Reproduction
https://github.com/genki/qwik-test/tree/no_multi_actions
Steps to reproduce
git clone
the the above and npm run dev
The reproduction code is in src/router/index.tsx
Please note this expects the latest qwik is located ~/project/clone/qwik
System Info
System:
OS: macOS 13.1
CPU: (8) arm64 Apple M2
Memory: 84.31 MB / 24.00 GB
Shell: 3.5.1 - /opt/homebrew/bin/fish
Binaries:
Node: 19.7.0 - /opt/homebrew/bin/node
Yarn: 1.22.19 - /opt/homebrew/bin/yarn
npm: 9.5.0 - /opt/homebrew/bin/npm
Browsers:
Chrome: 110.0.5481.177
Firefox: 110.0.1
Safari: 16.2
npmPackages:
@builder.io/qwik: file:~/project/clone/qwik/packages/qwik => 0.21.0
@builder.io/qwik-city: file:~/project/clone/qwik/packages/qwik-city => 0.5.3
undici: ^5.20.0 => 5.20.0
vite: 4.0.4 => 4.0.4
Additional Information
I faced this issue as well at other situation such that several actions run at the same timing.
For example, when one signal triggers several useTask$
at once and each of them runs different actions.
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Backlog