@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+2 -2
+1 -1
src/applications/diffusion/xaction/DiffusionCommitAcceptTransaction.php
··· 7 7 const ACTIONKEY = 'accept'; 8 8 9 9 protected function getCommitActionLabel() { 10 - return pht("Accept Commit \xE2\x9C\x94"); 10 + return pht('Accept Commit'); 11 11 } 12 12 13 13 protected function getCommitActionDescription() {
+1 -1
src/applications/diffusion/xaction/DiffusionCommitConcernTransaction.php
··· 7 7 const ACTIONKEY = 'concern'; 8 8 9 9 protected function getCommitActionLabel() { 10 - return pht("Raise Concern \xE2\x9C\x98"); 10 + return pht('Raise Concern'); 11 11 } 12 12 13 13 protected function getCommitActionDescription() {