-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Performance issue with player logs (#17948)
- Loading branch information
1 parent
503e13b
commit 36521eb
Showing
5 changed files
with
176 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,9 +13,27 @@ const allNotebooks = [ | |
{ | ||
title: 'my amazing notebook', | ||
short_id: 'abc', | ||
created_by: { | ||
first_name: 'Ben', | ||
email: '[email protected]', | ||
}, | ||
}, | ||
{ | ||
title: 'and another amazing notebook', | ||
short_id: 'def', | ||
created_by: { | ||
first_name: 'Paul', | ||
email: '[email protected]', | ||
}, | ||
}, | ||
{ | ||
title: 'an empty notebook', | ||
short_id: 'ghi', | ||
created_by: { | ||
first_name: 'David', | ||
email: '[email protected]', | ||
}, | ||
}, | ||
{ title: 'and another amazing notebook', short_id: 'def' }, | ||
{ title: 'an empty notebook', short_id: 'ghi' }, | ||
] | ||
|
||
const Template: StoryFn<typeof NotebookSelectButton> = (props) => { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters