We have some issue.
Any of the data (components, priority) doesn't pass to Jira, from the browser it goes to Jira through (POST: components: ['10500'], priority: '3'), but in newly created issues, it doesn't appear. If there are values predefined in Issue Collector configuration (summary, description etc.) its working perfect.
In apps logs, I don't see any useful information regarding some errors or whatever that helps me to understand why it's not passing to a new issue.
It was tested at standalone server Jira 6x & 7x
Setting was got from Advance use of the Jira issue collector
I tried
fieldValues: {
components: ['10500'],
priority: '3'
}
fieldValues: {
components: '10500',
priority: '3'
}
fieldValues: {
components: 10500,
priority: '3'
}
From browser, data is sent by POST
components:10500
priority:3
Response from Jira server:
<html><body><textarea>{"key":"STP-9", "url":"https://xxxx.xxx/browse/STP-9"}</textarea></body></html>
Please advice.
Thank you.