We use Jira Core since About 2 years.
In some of our Workflows we used the Field Description of the Summary field to automatically fill and hide it.
Here's the relating script:
<script type="text/javascript">
jQuery("label:contains('NoSummaryField')").parent().hide();
jQuery("input#summary").parent().hide();
jQuery("#create-issue-submit").click(function(){
// TODO: fetch ur summary value here
var summary_value = "Neuer Vorgang";
jQuery("input#summary").val(summary_value);
});
</script>
Unfortunatly since we updated to Jira Version 8.7.1, the script seems not to be executed anymore but is shown on the create issue screens.
With Version 8.6.1 the description wasn't shown and the script was executed.
Try this:
Disabling HTML in custom fields description
Status: IMPLEMENTED (eap 02)
We’re changing the default behavior of one of the global settings: Enable HTML in custom field descriptions and list item values. Now, it will be OFF by default. If your instance relies on having this option enabled, make sure to change it in Administration > System > General configuration.
https://confluence.atlassian.com/jiracore/preparing-for-jira-8-7-983794309.html
Hi Dawn @Dawn Fama ,
I have just upgraded to 8.13 version, here still this JS shows up in this area and it is already disabled by default. Will this issue be solved if we enable it? Or is there any other alternate workaround for it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Mohammed,
Sorry for any confusion. I'm not an Atlassian developer. I'm just part of the community.
I copied the response above from the sited link - Preparing for Jira 8.7 | Atlassian Support | Atlassian Documentation
Have you tried to enable to see if it works as expected?
Also, maybe full re-index may help after upgrade? Are you using built in jvm or other jvm?
Currently, I'm running 8.16.1 on my instance.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks dawn, it worked out for me in 8.13.4 version after the re-index. Thanks aton for the info.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I had the same issue. Thanks @Dawn Fama , it worked for me in 8.20.1 also without reindexing.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.