From 61f6b1609f79cddcc073a26809d68d9bce93fbfa Mon Sep 17 00:00:00 2001 From: hufangzhou Date: Wed, 31 Aug 2022 11:14:08 +0800 Subject: [PATCH] * Fix bug #26586. --- module/execution/js/story.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/js/story.js b/module/execution/js/story.js index 0c84c72723..a4a9458891 100644 --- a/module/execution/js/story.js +++ b/module/execution/js/story.js @@ -27,7 +27,7 @@ $(function() var planID = $('#plan').val(); if(planID) { - parent.location.href = createLink('execution', 'importPlanStories', 'executionID=' + executionID + '&planID=' + planID); + location.href = createLink('execution', 'importPlanStories', 'executionID=' + executionID + '&planID=' + planID); } })