From 46cc73816ecff5423ecb7557fb768b171b4ccbe9 Mon Sep 17 00:00:00 2001 From: Ben Gotow Date: Thu, 14 Apr 2016 16:34:46 -0400 Subject: [PATCH] fix(star): Change action from Star All => Star #1927 --- internal_packages/thread-list/lib/thread-toolbar-buttons.cjsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal_packages/thread-list/lib/thread-toolbar-buttons.cjsx b/internal_packages/thread-list/lib/thread-toolbar-buttons.cjsx index 11b3f23d2..1a02bd6f9 100644 --- a/internal_packages/thread-list/lib/thread-toolbar-buttons.cjsx +++ b/internal_packages/thread-list/lib/thread-toolbar-buttons.cjsx @@ -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"