Move the long text custom field to after the description.
長いテキストのカスタムフィールドをトラッカーの後に移動します。
None
Bottom of issue form
JavaScript
$(function() {
// Note: Change the ID according to the custom field you want to target.
const customField = $('p:has(label[for="issue_custom_field_values_1"])');
$('p:has(label[for="issue_description"])')
.after(customField);
});