From 6c41126706ded411b48fc49be743395abf9605f8 Mon Sep 17 00:00:00 2001 From: onozaty Date: Thu, 21 Mar 2024 22:58:13 +0900 Subject: [PATCH] =?UTF-8?q?[=E5=AD=90=E3=83=81=E3=82=B1=E3=83=83=E3=83=88?= =?UTF-8?q?=E4=BD=9C=E6=88=90=E6=99=82=E3=81=AB=E8=A6=AA=E3=83=81=E3=82=B1?= =?UTF-8?q?=E3=83=83=E3=83=88=E3=81=AE=E6=83=85=E5=A0=B1=E3=82=92=E5=88=A9?= =?UTF-8?q?=E7=94=A8]=20=E5=AD=90=E3=83=81=E3=82=B1=E3=83=83=E3=83=88?= =?UTF-8?q?=E3=81=AE=E4=BD=9C=E6=88=90=E3=81=8C=E8=A8=B1=E5=8F=AF=E3=81=95?= =?UTF-8?q?=E3=82=8C=E3=81=A6=E3=81=84=E3=81=AA=E3=81=84=E5=A0=B4=E5=90=88?= =?UTF-8?q?=E3=81=AB=E3=82=A8=E3=83=A9=E3=83=BC=E3=81=A8=E3=81=AA=E3=82=89?= =?UTF-8?q?=E3=81=AA=E3=81=84=E3=82=88=E3=81=86=E3=81=AB=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../0023.when_create_child_use_parent_infomation/example.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/0023.when_create_child_use_parent_infomation/example.md b/examples/0023.when_create_child_use_parent_infomation/example.md index 5b3b89f..b2f176a 100644 --- a/examples/0023.when_create_child_use_parent_infomation/example.md +++ b/examples/0023.when_create_child_use_parent_infomation/example.md @@ -40,7 +40,10 @@ $(function() { 'issue_fixed_version_id' ]; - const addLink = $('#issue_tree a[href*="/issues/new"]')[0]; + const addLink = $('#issue_tree a[href*="/issues/new"]')[0]; + if (!addLink) { + return; + } for (let i = 0; i < useFieldIds.length; i++) { const field = $('#' + useFieldIds[i]);