Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Is there any way to do following in jira, when I type
- 2 it saves as 02.00
- 2.1 it saves as 02.10
This should be updated on the same field when I save the issue.
I could use a number field and then format the input to a text field, but couldn't do it on the same number field when issue is saved.
{{triggerIssue.order number.format("00.00")}} and leaves only a space
Can you check with your JIRA Admin if there is some default formatting defined on the custom field that you are using?
Are you facing this issue when you manually add the value in this field?
Can you check with your JIRA Admin if there is some default formatting defined on the custom field that you are using? There isn't
Are you facing this issue when you manually add the value in this field? I add and save the issue, I need the the value I entered (2.6) to be like 02.60.
Is there anyway to do this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try with and it will work for you. The asNumber forces JIRA to treat the value as number
{{triggerIssue.order number.asNumber.format("00.00")}}
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.