We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5e2e74 commit 6c41126Copy full SHA for 6c41126
examples/0023.when_create_child_use_parent_infomation/example.md
@@ -40,7 +40,10 @@ $(function() {
40
'issue_fixed_version_id'
41
];
42
43
- const addLink = $('#issue_tree a[href*="/issues/new"]')[0];
+ const addLink = $('#issue_tree a[href*="/issues/new"]')[0];
44
+ if (!addLink) {
45
+ return;
46
+ }
47
48
for (let i = 0; i < useFieldIds.length; i++) {
49
const field = $('#' + useFieldIds[i]);
0 commit comments