Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 831 Bytes

File metadata and controls

51 lines (34 loc) · 831 Bytes

Move the long text custom field to after the description

Move the long text custom field to after the description.
長いテキストのカスタムフィールドをトラッカーの後に移動します。

Setting

Path Pattern

None

Insert Position

Bottom of issue form

Code

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);
});

Result

Before

before

After

after