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

Fix incorrect rendering of "Spaces" dropdown control when configuring EditEngine defaults

Summary:
Ref T10004. This could sometimes pass `false`, which counts as disabled.

Instead, pass `null` explicitly.

Test Plan: Edited default space on an EditEngine form.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10004

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

+1 -1
+1 -1
src/view/form/control/AphrontFormPolicyControl.php
··· 351 351 $viewer, 352 352 $space_phid), 353 353 array( 354 - 'disabled' => $this->getDisabled(), 354 + 'disabled' => ($this->getDisabled() ? 'disabled' : null), 355 355 'name' => 'spacePHID', 356 356 'class' => 'aphront-space-select-control-knob', 357 357 ));