fix(star): Change action from Star All => Star #1927

This commit is contained in:
Ben Gotow 2016-04-14 16:34:46 -04:00
parent 67d28d4e59
commit 46cc73816e

View file

@ -75,11 +75,11 @@ class ToggleStarredButton extends React.Component
render: ->
postClickStarredState = _.every @props.items, (t) -> t.starred is false
title = "Remove stars from all"
title = "Unstar"
imageName = "toolbar-star-selected.png"
if postClickStarredState
title = "Star all"
title = "Star"
imageName = "toolbar-star.png"
<button tabIndex={-1}