Hello community,
We have a connect app that contains some jiraIssueGlances modules.
We need that some of them appear only when the issue belongs to a Team-managed project, and not to a Company-managed one, but we cannot find any condition that satisfies.
Does anyone have a clue on how to achieve this?
You can try:
{
condition: 'jira_expression',
params: {
expression: 'project.style == "next-gen"'
}
},
I spoke too fast with a slight modification, it did work:
{
âconditionâ: âjira_expressionâ,
âparamsâ: {
âexpressionâ: âissue.project.style == ânext-genââ
}
}
Thank you @remie , you are the best!
1 Like