From 24f2c194399fd212d366f0bf8f6a1ca130a45224 Mon Sep 17 00:00:00 2001 From: zenggang Date: Thu, 10 Oct 2024 13:11:11 +0800 Subject: [PATCH] * [ticket#1465] Fix execution change. --- module/execution/ui/ajaxgetdropmenu.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/ui/ajaxgetdropmenu.html.php b/module/execution/ui/ajaxgetdropmenu.html.php index a1ac5ab826..3a1fbb9e9d 100644 --- a/module/execution/ui/ajaxgetdropmenu.html.php +++ b/module/execution/ui/ajaxgetdropmenu.html.php @@ -55,7 +55,7 @@ foreach($projectExecutions as $projectID => $executions) $item['id'] = $execution->id; $item['text'] = $execution->name; $item['keys'] = zget(common::convert2Pinyin(array($execution->name)), $execution->name, ''); - $item['data-app'] = $app->tab; + $item['data-app'] = 'execution'; $item['url'] = sprintf($link, $execution->id); if($execution->type == 'stage') $item['url'] = helper::createLink('execution', 'task', "executionID={$execution->id}");