Can I modify the custom field in issue view mode?

I am creating a custom field of type custom UI. I am using:

Edit:
      resource: edit

In the manifest file. Therefore, I can only manage to work on the create issue and edit issue. I want to customize my custom field in the view issue. Is there a way to do it ?

1 Like

Did you ever find a solution to this? I tried the following but my Custom UI does not appear to be called/rendered.

modules:
  jira:customField:
    - key: jira-lookup
      name: Systems
      description: A custom field to lookup entities
      type: object
      formatter:
        expression: "`${value.name} - ${value.uuid}`"
      readOnly: false
      resolver:
        function: edit-issue-resolver
      resource: view
      edit:
        resource: edit
resources:
  - key: edit
    path: static/edit-lookup/build
    tunnel:
      port: 3000
  - key: view
    path: static/view-lookup/build
    tunnel:
      port: 3001

Hey,

It’s not possible to use Custom UI for the view of the field. To customize the view, provide a UI Kit function at the top level of the field declaration:

modules:
  jira:customField:
    function: view

See the Rendering section in the documentation for more details.