mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-23 14:00:56 +01:00
Remove unicode marks for "Accept/Raise Concern" in Audit
Summary: Ref T13210. The comment action dropdown for audits has a heavy checkmark next to "Accept" and a heavy "X" next to "Raise Concern". We previously removed similar marks in Differential in D19405 and that seems to have gone fine. For consistency, remove these too. Test Plan: Viewed the comment action dropdown, no longer saw checkmark and X-mark. Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T13210 Differential Revision: https://secure.phabricator.com/D19759
This commit is contained in:
parent
a7c008708d
commit
61ec434208
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ final class DiffusionCommitAcceptTransaction
|
|||
const ACTIONKEY = 'accept';
|
||||
|
||||
protected function getCommitActionLabel() {
|
||||
return pht("Accept Commit \xE2\x9C\x94");
|
||||
return pht('Accept Commit');
|
||||
}
|
||||
|
||||
protected function getCommitActionDescription() {
|
||||
|
|
|
@ -7,7 +7,7 @@ final class DiffusionCommitConcernTransaction
|
|||
const ACTIONKEY = 'concern';
|
||||
|
||||
protected function getCommitActionLabel() {
|
||||
return pht("Raise Concern \xE2\x9C\x98");
|
||||
return pht('Raise Concern');
|
||||
}
|
||||
|
||||
protected function getCommitActionDescription() {
|
||||
|
|
Loading…
Reference in a new issue