Skip to content

Commit 7678226

Browse files
committed
fixup! two-column-mode: Support subtask click in the list
1 parent f86673b commit 7678226

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

public/javascripts/service/yobi.issue.List.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,11 @@
245245
function _initShowChildList() {
246246
$(".post-item").on("click", function(e){
247247
$(this).find(".child-issue-list").show();
248-
e.stopPropagation();
249248
});
249+
250+
$(".title-wrap > .title").on("click", function(e){
251+
e.stopPropagation();
252+
})
250253
}
251254

252255
function _onLoadIssueList(){

0 commit comments

Comments
 (0)