Skip to content

Commit

Permalink
Version
Browse files Browse the repository at this point in the history
  • Loading branch information
jaedb committed Mar 22, 2017
1 parent c9a5f80 commit 4248ab5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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.3'
__version__ = '2.13.4'

##
# Core extension class
Expand Down
2 changes: 1 addition & 1 deletion src/js/views/Artist.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ class Artist extends React.Component{
<div className="body about">

<div className="col w40 tiles">
{this.props.artist.images_additional ? <div className="tile thumbnail-wrapper"><Thumbnail size="large" images={this.props.artist.images_additional} /></div> : null}
{this.props.artist.images_additional ? <div className="tile thumbnail-wrapper"><Thumbnail size="large" canZoom images={this.props.artist.images_additional} /></div> : null}
{this.props.artist.followers ? <div className="tile"><span className="text"><FontAwesome name="users" />{this.props.artist.followers.total.toLocaleString() } followers</span></div> : null}
{this.props.artist.popularity ? <div className="tile"><span className="text"><FontAwesome name="fire" />{this.props.artist.popularity }% popularity</span></div> : null}
{this.props.artist.listeners ? <div className="tile"><span className="text"><FontAwesome name="headphones" />{ this.props.artist.listeners.toLocaleString() } listeners</span></div> : null }
Expand Down

0 comments on commit 4248ab5

Please sign in to comment.