I change default bug Issue Description field when user create bug issue
reference web page is https://confluence.atlassian.com/display/JIRA/Setting+a+Default+Value+in+the+Description+Field
I insert code in description-edit.vm file
changed code is below
#set ($customDescription ="---> remove-this <----
\
h2. analasys
bla
bla
bla
\
h2. test
bla
bla
bla
")
#set ($customDescription = $customDescription.replace('\',' '))
#if ($description.contains('remove-this'))
#set ($description = "")
#end
#if ( ($issue.getProject().getString("key") == 'CSATFSW') || ($issue.getProject().getString("key") == 'RTEMS') )
#if(($description == "") && (($issue.getIssueTypeObject().getName() == "Bug")))
#set ($description = $customDescription)
#end
#end
actually this code have problem
you can see 'remove-this' keyword in my code
as you know, when user create issue, jira issue description field is intended to not clear after user input some content
in case of me, I don't want keep default bug description content when user change issue type (because it's content fit's only bug issue type)
so I tried
if $description == $customDescription
set $description = ''
like this
if any issue type has default bug description value, then it will be clear
but somewhy comparing value is not working
so I workround this problem by using put remove-this keyword
I thought it works fine but after a while some trivial problem happened.
after user created bug issue with 'remove-this' keyword remained,
until user remove 'remove-this' keyworkd, they cant fix ther description :(
I want to solve this problem.
In my opinion, if I found way to work $description == $customDescription this expression
it will be solved
or... when user push Update button when creating issues, put some hooking code to remove 'remove-this' keyworkd mabye..
help me please
thx Eva but I already solved problem :)
and I'm sorry for my pool explanation
several questions for you then:
1) you only this to be set at Creation or do you want to set or filter the description every time they update teh description?
2) I am not getting this customDescription. Is it possible if you can format your code better using the "code" button on the format bar?
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.