mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
Examples: Update auto-title example to use forward-compatible API
This commit is contained in:
parent
e9e4886b74
commit
5c8057c4e2
@ -296,7 +296,7 @@ import startCase from 'lodash/startCase';
|
||||
|
||||
addons.setConfig({
|
||||
sidebar: {
|
||||
renderLabel: ({ name, isLeaf }) => (isLeaf ? name : startCase(name)),
|
||||
renderLabel: ({ name, type }) => (type === 'story' ? name : startCase(name)),
|
||||
},
|
||||
});
|
||||
```
|
||||
|
@ -3,6 +3,6 @@ import startCase from 'lodash/startCase';
|
||||
|
||||
addons.setConfig({
|
||||
sidebar: {
|
||||
renderLabel: ({ name, isLeaf }) => (isLeaf ? name : startCase(name)),
|
||||
renderLabel: ({ name, type }) => (type === 'story' ? name : startCase(name)),
|
||||
},
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user