diff --git a/module/common/model.php b/module/common/model.php index 525876f09e..37d7afb21d 100644 --- a/module/common/model.php +++ b/module/common/model.php @@ -544,7 +544,8 @@ class commonModel extends model if($config->systemMode == 'classic' and $openApp == 'execution') $icon = zget($lang->navIcons, 'project', ''); $link = helper::createLink($currentModule, $currentMethod); - $html = $link ? html::a($link, "$icon {$lang->$openApp->common}", '', "class='btn'") : "$icon {$lang->$openApp->common}"; + $className = $openApp == 'devops' ? 'btn num' : 'btn'; + $html = $link ? html::a($link, "$icon {$lang->$openApp->common}", '', "class='$className'") : "$icon {$lang->$openApp->common}"; echo "
" . $html . '
'; }