My Tasks Extra Display Fields - Step

Hello,

I’ve updated our tk-multi-workfiles2.yml to include my_tasks_extra_display_fields: [step]:

settings.tk-multi-workfiles2:
  my_tasks_filters:
    - [task_assignees, is, '{context.user}']
  entities:
  - caption: Assets
    entity_type: Asset
    hierarchy: [sg_asset_type, code]
    filters:
    sub_hierarchy:
      entity_type: Task
      filters:
      link_field: entity
      hierarchy: [step]
  - caption: Shots
    entity_type: Shot
    filters:
    hierarchy: [sg_sequence, code]
    sub_hierarchy:
      entity_type: Task
      filters:
      link_field: entity
      hierarchy: [step]
  my_tasks_extra_display_fields: [step]
  location: "@apps.tk-multi-workfiles2.location"

However, this displays the step as a dictionary in the Shotgun: File Open view:

image

I tried changing it to step.name and step.code, but that just displays None in the UI as a result.

What’s the proper way of configuring the step so that it displays the same way the Pipeline Step field does on the Shotgun site?

Thanks.

1 Like

The correct formatting should be: [step.Step.code]

2 Likes