mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-12 18:02:40 +01: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:
parent
f8113aecdc
commit
ae1b07bcfb
1 changed files with 5 additions and 0 deletions
|
@ -148,4 +148,9 @@ final class PhabricatorStandardCustomFieldSelect
|
||||||
return new ConduitStringParameterType();
|
return new ConduitStringParameterType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function newBulkParameterType() {
|
||||||
|
return id(new BulkSelectParameterType())
|
||||||
|
->setOptions($this->getOptions());
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue