* Adjust the class name of button.

This commit is contained in:
dingguodong
2023-08-15 16:15:37 +08:00
parent 0930a07a40
commit 79816374ff
+6 -5
View File
@@ -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'
)
)
)),