mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-24 08:04:11 +08:00
fix(star): Change action from Star All => Star #1927
This commit is contained in:
parent
a196e50f25
commit
b521cf7f03
1 changed files with 2 additions and 2 deletions
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue