Hi Everyone,
I'm trying to set an automation for the following scenario and i'm struggling with once piece.
Automation: When issue is created, and issue type is X, and field A is one of D, E, F, then create sub-task.
What i need is for the subtask summary to copy the entry selected in field X on the parent issue. How do i do that?
You will have to remove the entire $i18n.getText("common.words.none") in the template. Javascript option will not work with inline edit in 5.1.
Will Javascript work at all in description fields in 5.1?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not with inline edit.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thank you .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm goimg with a JS snippet found here as a comment:
<script type="text/javascript">try
{var select = document.getElementById('customfield_10071');select.options[0].text="";}
catch(err){}</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.