Move custom field to after the tracker.
カスタムフィールドをトラッカーの後に移動します。
None
Bottom of issue form
JavaScript
$(function() {
// Note: Change the ID according to the custom field you want to target.
const customField = $('p:has(#issue_custom_field_values_1)');
$('p:has(#issue_tracker_id)')
.after(
$('<div class="splitcontent">')
.append(
$('<div class="splitcontentleft">').append(customField)));
});