mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-27 09:53:13 +00:00
Merge pull request #9714 from overleaf/ae-storybook
Fix errors in Storybook stories GitOrigin-RevId: 54ff960f0a40e63eac69afa8727faaabb1289493
This commit is contained in:
parent
135ec8db8f
commit
67c5b2a2a1
2 changed files with 8 additions and 1 deletions
|
@ -47,6 +47,7 @@ export default {
|
||||||
argTypes: {
|
argTypes: {
|
||||||
handleHide: { action: 'close modal' },
|
handleHide: { action: 'close modal' },
|
||||||
openProject: { action: 'open project' },
|
openProject: { action: 'open project' },
|
||||||
|
handleAfterCloned: { action: 'after cloned' },
|
||||||
},
|
},
|
||||||
decorators: [ScopeDecorator],
|
decorators: [ScopeDecorator],
|
||||||
}
|
}
|
||||||
|
|
|
@ -140,7 +140,13 @@ export default {
|
||||||
show: true,
|
show: true,
|
||||||
animation: false,
|
animation: false,
|
||||||
user: {},
|
user: {},
|
||||||
project,
|
project: {
|
||||||
|
...project,
|
||||||
|
owner: {
|
||||||
|
...project.owner,
|
||||||
|
_id: window.user.id,
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
argTypes: {
|
argTypes: {
|
||||||
handleHide: { action: 'hide' },
|
handleHide: { action: 'hide' },
|
||||||
|
|
Loading…
Reference in a new issue