In Jira, it's possible to set default values for your fields. In Cloud instances, however, this operation is a bit trickier due to the rendering issues related to the custom field type of Multi-Level Cascading Select, not fully supported on any screen.
To set a default value, these are the steps you need to follow:
Get the value of the options you want to set as default.
In the MLCS Cloud app, right-click on a single option and click “inspect”.
Find the
<li>
element and copy itsid
:
Go to the “Edit default value” page.
In the text area where you’re asked to provide the default values, paste the following:
{ "lv0": { "label": "1", "value": "8c371a3c6af7" }, "lv1": { "label": "1.2", "value": "06fe711b8ba8" } }
lv(n)
represents the level of the option, starting from 0 for root options. Each child option increments the level by one, indicating its position in the hierarchy. There is no limit to the levels of options you can set as default value.Label
is the name of your option. Change it accordingly.Value
is the option ID that you have retrieved in point 1. Update the value with the ID.
Click “Set default“.