Skip to content

Commit

Permalink
Merge pull request #1274 from Automattic/fix/wordads-icon
Browse files Browse the repository at this point in the history
WordAds: Replace missing WordAds icon.
  • Loading branch information
dbspringer committed Dec 4, 2015
2 parents f809cdf + 4616446 commit 0410081
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions client/my-sites/sidebar/sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,13 @@ module.exports = React.createClass( {
}

return (
<li className={ this.itemLinkClass( '/ads', 'ads' ) }>
<a onClick={ this.onNavigate } href={ adsLink }>
<span className="menu-link-text">{ site.jetpack ? 'AdControl' : 'WordAds' }</span>
</a>
</li>
<SidebarMenuItem
label={ site.jetpack ? 'AdControl' : 'WordAds' }
className={ this.itemLinkClass( '/ads', 'ads' ) }
link={ adsLink }
onNavigate={ this.onNavigate }
icon={ 'speaker' }
/>
);
},

Expand Down

0 comments on commit 0410081

Please sign in to comment.