Skip to content

Commit

Permalink
Fixing adding tracks to playlist
Browse files Browse the repository at this point in the history
  • Loading branch information
jaedb committed Apr 6, 2017
1 parent 1754977 commit 67036e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mopidy_iris/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from core import IrisCore

logger = logging.getLogger(__name__)
__version__ = '2.13.8'
__version__ = '2.13.9'

##
# Core extension class
Expand Down
4 changes: 2 additions & 2 deletions src/js/components/ContextMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ class ContextMenu extends React.Component{
{
playlists.map( playlist => {
return (
<span className="menu-item-wrapper" key={playlist.uri} >
<a className="menu-item" onClick={ () => this.addTracksToPlaylist(playlist.uri) }>
<span className="menu-item-wrapper" key={playlist.uri}>
<a className="menu-item" onClick={e => this.addTracksToPlaylist(e,playlist.uri) }>
<span className="label">{ playlist.name }</span>
</a>
</span>
Expand Down

0 comments on commit 67036e6

Please sign in to comment.