Is there a condition like is_issue_unassigned for issues, that have no assignee

I want to display an issue context only when the issue is unassigned.

Is there a condition for this?

I looked here: Connect conditions (atlassian.com), but I found only

is_issue_assigned_to_current_user

A simple Jira expression should be enough: https://developer.atlassian.com/cloud/jira/platform/connect-conditions/#jira_expression-condition

Just check whether issue.assignee is empty

1 Like