From 79816374ff73c8e4d2cb59b72784d301720ddb88 Mon Sep 17 00:00:00 2001 From: dingguodong Date: Tue, 15 Aug 2023 16:15:10 +0800 Subject: [PATCH] * Adjust the class name of button. --- module/execution/ui/importbug.html.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/module/execution/ui/importbug.html.php b/module/execution/ui/importbug.html.php index 577c2254d9..18ef22a936 100644 --- a/module/execution/ui/importbug.html.php +++ b/module/execution/ui/importbug.html.php @@ -39,13 +39,14 @@ formBase set::footToolbar(array( 'items' => array( array( - 'text' => $lang->import, - 'class' => 'btn secondary import-bug-btn size-sm', + 'text' => $lang->import, + 'className' => 'btn secondary import-bug-btn size-sm', ), array( - 'text' => $lang->goback, - 'class' => 'btn size-sm text-gray', - 'url' => createLink('execution', 'task', "executionID={$execution->id}") + 'text' => $lang->goback, + 'className' => 'btn btn-info size-sm text-gray', + 'url' => createLink('execution', 'task', "executionID={$execution->id}"), + 'btnType' => 'info' ) ) )),