I recently tried to detect changes to the Linked Issues field, even if the listener is added:
Chrome's console log entry:
[SR Behaviours] field: issuelinks
The problem is that apparently the fields have different IDs to that one issuelinks-linktype and issuelinks-issues. Because of this, none of the changes trigger the Behaviour script.
Behaviour setup:
- Field enabled:
Linked Issues
- Conditions:
None
- Script:
// log a change in the field
log.error getFieldById(getFieldChanged())
As a result, no matter how many times I change the field, I get no entries in my log.
Is this a bug or am I using the field in the wrong way?