We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue:
1.0.5
React
Link with query string <Link to={/page/1?status=bla>Bla</Link>. ?status=bla is not captured in actions logger.
<Link to={/page/1?status=bla>Bla</Link>
?status=bla
Configuration with query string is not recognised
StoryRouter({ '/page/1?status=bla': linkTo('MyComponent, 'story') })
Without QS works
StoryRouter({ '/page/1': linkTo('MyComponent, 'story') })
The text was updated successfully, but these errors were encountered:
I can confirm this in the vue version as well.
When I call a route with parameters, they will not be shown in the actions panel. E.g.
<router-link :to="{ name: 'my-route-name', params: { someParam: 42 } }" > Click here </router-link>
would only show PUSH: (1) ["name: my-route-name"] when clicked.
PUSH: (1) ["name: my-route-name"]
Sorry, something went wrong.
No branches or pull requests
Issue:
Which version are you using?
1.0.5
Are you using storybook-router with a react based project or a vue one?
React
Please describe the problem:
Link with query string
<Link to={/page/1?status=bla>Bla</Link>
.?status=bla
is not captured in actions logger.Configuration with query string is not recognised
Without QS works
Please explain how to reproduce the issue or (better) provide an example to do it.
The text was updated successfully, but these errors were encountered: