Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
ids = new Array()
.
.
ids.concat(bean.getRelatedIssues("relationship");
does not work
Solved! Go to Solution.
The concat function doesn't modify its operand, you have to assign the results of concat to a variable.
You can do a direct assignment:
var ids = bean.getRelatedIssues("relationship");
Or if you must add to an array:
ids = ids.concat( bean.getRelatedIssues("relationship") );
The concat function doesn't modify its operand, you have to assign the results of concat to a variable.
You can do a direct assignment:
var ids = bean.getRelatedIssues("relationship");
Or if you must add to an array:
ids = ids.concat( bean.getRelatedIssues("relationship") );