@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.

Check for presence of any Columns before triggering initialization of Workboard

Summary: Ref T6256, this prevents more installs from getting in this weird state. We'll have to follow up if possible to "fix" the issue retroactively.

Test Plan: Test moving a backlog column to new position, hiding rest of other panels.

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T6256

Differential Revision: https://secure.phabricator.com/D10651

+3 -1
+3 -1
src/applications/project/controller/PhabricatorProjectBoardViewController.php
··· 68 68 $columns = $column_query->execute(); 69 69 $columns = mpull($columns, null, 'getSequence'); 70 70 71 - if (empty($columns[0])) { 71 + // TODO: Expand the checks here if we add the ability 72 + // to hide the Backlog column 73 + if (!$columns) { 72 74 switch ($request->getStr('initialize-type')) { 73 75 case 'backlog-only': 74 76 $unguarded = AphrontWriteGuard::beginScopedUnguardedWrites();