linkTo another story error
See original GitHub issueHi guys,
I try to figure out what can produce that error when clicking a button with a specific handler to switch to another named story:
page_bus.js?147f:40 Uncaught Error: dataId is not supplied via queryString
const props = {
handleSignIn: function() {
linkTo('Tab', 'empty');
}
}
};
storiesOf('Login', module)
.add('empty', () => (
<Login {...props} />
));
Issue Analytics
- State:
- Created 7 years ago
- Comments:12 (7 by maintainers)
Top Results From Across the Web
[addon-docs] Link to another story · Issue #8618 - GitHub
I need to link to another story to sort of build a "See also" or "For more information, see..." section. Describe the solution...
Read more >Linking a story to other story - Atlassian Community
Solved: If i link(like blocks or blocked by) a issue to a story. Is there any possibility that we cant close the story...
Read more >Instagram 'link in bio & stories' not working or opens website
The Instagram link in bio and stories is not working or opens the web version for many users, but there's a potential workaround....
Read more >Link user stories and issues to other work items in Azure Boards
Learn how to link one or more work items to other work items or to a new git branch in Azure Boards.
Read more >Tag: Link to another story? crossword clue - LAXCrossword.com
a complete list of answers. Want to discuss the puzzle? Then … … leave a comment. Bill's time: 6m 29s. Bill's errors: 0...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
linkTo('section_1', 'section_1_2')
returns a function that when called, will navigate.linkTo('section_1', 'section_1_2')()
will navigate.I am getting the same issues when using it with setState in react:
Problem
This is just a quick example, a button is clicked.
isLoading
a boolean state for react component overlay. Complete1500
millisecond delay then it should firelinkTo()
however it does not work…Button origin
Any ideas?