I want to set an validator to check attachments name "MLX FA label"
I tried the following:
issue.attachments[0].filename == "MLX FA label"
!!issue.attachments && issue.attachments.some(it => it.filename == "MLX FA label")
But I couldn't get it to work, could you please help?