mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42:41 +01:00
Remove "Stopped" logic from Phrequent workflows
Summary: We can remove this "Stopped" code as per feedback on D7327. I think having the full text of "In Progress" and "Suspended" is much clearer than just a '*' though, so I've only removed the ongoing check. Test Plan: Ran a combination of `arc start`, `arc stop` and `arc time` and it all worked. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9955
This commit is contained in:
parent
f658f17080
commit
a953544657
1 changed files with 3 additions and 7 deletions
|
@ -49,14 +49,10 @@ abstract class ArcanistPhrequentWorkflow extends ArcanistBaseWorkflow {
|
|||
|
||||
$i = 0;
|
||||
foreach ($results as $result) {
|
||||
if ($result['ongoing']) {
|
||||
if ($i === 0) {
|
||||
$column_type = 'In Progress';
|
||||
} else {
|
||||
$column_type = 'Suspended';
|
||||
}
|
||||
if ($i === 0) {
|
||||
$column_type = 'In Progress';
|
||||
} else {
|
||||
$column_type = 'Stopped';
|
||||
$column_type = 'Suspended';
|
||||
}
|
||||
|
||||
$table->addRow(array(
|
||||
|
|
Loading…
Reference in a new issue