mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-21 00:59:29 +00:00
Add missing key
This commit is contained in:
parent
a3c32fb916
commit
6cb8b50c09
1 changed files with 2 additions and 1 deletions
|
|
@ -26,8 +26,9 @@ const MainContextMenu = props => (
|
|||
<Parent label="Play">
|
||||
<Node onClick={props.openMediaFileDialog} label="File..." />
|
||||
{props.filePickers &&
|
||||
props.filePickers.map(picker => (
|
||||
props.filePickers.map((picker, i) => (
|
||||
<Node
|
||||
key={i}
|
||||
onClick={async () => {
|
||||
props.loadMediaFiles(await picker.filePicker(), LOAD_STYLE.PLAY);
|
||||
}}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue