Skip to content

Commit

Permalink
Disable sidebar animations by default
Browse files Browse the repository at this point in the history
  • Loading branch information
shilman committed Mar 24, 2019
1 parent 7832101 commit f5401e9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addons/options/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ addDecorator(
* sidebar tree animations
* @type {Boolean}
*/
sidebarAnimations: true,
sidebarAnimations: false,
/**
* id to select an addon panel
* @type {String}
Expand Down
2 changes: 1 addition & 1 deletion lib/ui/src/modules/api/defaultState.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
sortStoriesByKind: false,
hierarchySeparator: '/',
hierarchyRootSeparator: null,
sidebarAnimations: true,
sidebarAnimations: false,
theme: null,
},
};
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ Stories.defaultProps = {
onSelectStory: null,
storiesHierarchy: null,
storyFilter: null,
sidebarAnimations: true,
sidebarAnimations: false,
};

Stories.propTypes = {
Expand Down

0 comments on commit f5401e9

Please sign in to comment.