* Fix bug#11637.

This commit is contained in:
zhujinyong
2021-03-29 11:31:04 +08:00
parent b0901b0483
commit 8beac103a4
2 changed files with 17 additions and 4 deletions
+5 -1
View File
@@ -54,7 +54,11 @@ function createBug(obj)
var onlybody = config.onlybody;
config.onlybody = 'no';
window.open(createLink('bug', 'create', params + ',stepIdList=' + stepIdList), '_parent');
var link = createLink('bug', 'create', params + ',stepIdList=' + stepIdList);
if(onlybody = 'yes') link += '#app=qa';
window.parent.$.apps.open(link);
config.onlybody = onlybody;
}