1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-19 16:58:48 +02:00

Support "<select />" custom fields in bulk editor

Summary: Ref T13025. Fixes T5689. A straightforward change!

Test Plan: Used the bulk editor to modify a custom "select" field like the one in T5689.

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T13025, T5689

Differential Revision: https://secure.phabricator.com/D18879
This commit is contained in:
epriestley 2018-01-19 06:54:08 -08:00
parent f8113aecdc
commit ae1b07bcfb

View file

@ -148,4 +148,9 @@ final class PhabricatorStandardCustomFieldSelect
return new ConduitStringParameterType();
}
protected function newBulkParameterType() {
return id(new BulkSelectParameterType())
->setOptions($this->getOptions());
}
}