From 4f3c4dbdae3df0601fe589c4a48d124c414e8c69 Mon Sep 17 00:00:00 2001
From: sgm0422 <976204163@qq.com>
Date: Thu, 27 Jan 2022 08:32:36 +0800
Subject: [PATCH] * Fix bug #19048.
---
module/execution/view/taskkanban.html.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/module/execution/view/taskkanban.html.php b/module/execution/view/taskkanban.html.php
index ea1471a1fb..092be4cb63 100644
--- a/module/execution/view/taskkanban.html.php
+++ b/module/execution/view/taskkanban.html.php
@@ -65,7 +65,7 @@
$width = $this->app->getClientLang() == 'en' ? '70%' : '60%';
echo '
' .html::a($this->createLink('kanban', 'setLaneHeight', "executionID=$executionID&from=execution", '', true), " " . $lang->kanban->laneHeight, '', "class='iframe btn btn-link' title='{$lang->kanban->laneHeight}' data-width=$width") . '';
}
- if(common::hasPriv('kanban', 'setColumnWidth')) echo '' .html::a($this->createLink('kanban', 'setColumnWidth', "executionID=$executionID&from=execution", '', true), " " . $lang->kanban->columnWidth, '', "class='iframe btn btn-link' title='{$lang->kanban->laneHeight}' data-width=30%") . '';
+ if(common::hasPriv('kanban', 'setColumnWidth')) echo '' .html::a($this->createLink('kanban', 'setColumnWidth', "executionID=$executionID&from=execution", '', true), " " . $lang->kanban->columnWidth, '', "class='iframe btn btn-link' title='{$lang->kanban->columnWidth}' data-width=30%") . '';
if(common::hasPriv('execution', 'printKanban')) echo '' .html::a($this->createLink('execution', 'printKanban', "executionID=$executionID"), " " . $lang->execution->printKanban, '', "class='iframe btn btn-link' id='printKanban' title='{$lang->execution->printKanban}' data-width='500'") . '';
echo '' .html::a('javascript:fullScreen()', " " . $lang->execution->fullScreen, '', "class='btn btn-link' title='{$lang->execution->fullScreen}' data-width='500'") . '';
echo '';