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
Currently sorting stories in the sidebar is done using a parameter, options.storySort because once upon a time that code was executed in the preview.
options.storySort
Today, sorting is done in Node. That means that:
storySort
preview.js
This is pure tech debt. We should:
main.js
This is a breaking change that can only be done in a major release.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Currently sorting stories in the sidebar is done using a parameter,
options.storySort
because once upon a time that code was executed in the preview.Today, sorting is done in Node. That means that:
storySort
can only be defined inpreview.js
, making it a weird parameterThis is pure tech debt. We should:
storySort
tomain.js
main.js
This is a breaking change that can only be done in a major release.
The text was updated successfully, but these errors were encountered: