Examples: Update auto-title example to use forward-compatible API

This commit is contained in:
Michael Shilman 2022-05-02 17:13:50 +08:00
parent e9e4886b74
commit 5c8057c4e2
2 changed files with 2 additions and 2 deletions

View File

@ -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)),
},
});
```

View File

@ -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)),
},
});