Is there a configuration where we can prevent periods or any symbol from being entered in number fields in Jira Data Center?
Hi,
Go to: Jira Settings > System > Automation.
Create a new rule.
Trigger: "Field Value Changed" (When the numeric field is changed).
Condition: Use a smart value to validate numbers only:
{{issue.customfield_XXXXX.replaceAll("[^0-9]", "")}}
Action: "Edit Issue" and overwrite the field with the value without symbols.
See if this works for you.
Best Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.