I’ve built a Forge custom field type with render: native and a custom edit.jsx using CustomFieldEdit. The UI works correctly in Issue View, Create, and Transition screens. However, in Bulk Edit, the custom UI does not appear; instead, Jira displays a default multi-select dropdown with chips for selected values rather than the Forge-provided UI. Users can select options and add or remove them, but none of the custom logic or validation from edit.jsx is applied. In the edit file, I’m displaying labels fetched from Forge SQL while saving the corresponding IDs in the background.
Example manifest snippet:
YAML
jira:customFieldType:
- key: id-only-type
name: ID Only (Static Label)
type: string
collection: list
render: native
resource: view-resource
edit:
resource: edit-resource
render: native
Why doesn’t the Forge custom field UI render in Bulk Edit? Is this a limitation of Forge or Jira? Are there any plans or workarounds to support custom UI in Bulk Edit?