When the checkbox is checked, disable the text.
チェックボックスがチェックされたら、テキストを無効化します。
None
Bottom of issue form
JavaScript
$(function() {
const checkbox = $('#issue_custom_field_values_1');
const text = $('#issue_custom_field_values_2');
function changeEnableText() {
text.prop('disabled', checkbox.prop('checked'));
}
checkbox.on('change', changeEnableText);
changeEnableText();
});