From e5f1368924c6a3bdcfdbe360b98c9d17d98ccb12 Mon Sep 17 00:00:00 2001 From: Catouse Date: Wed, 23 May 2018 14:06:33 +0800 Subject: [PATCH] * change btn style in table of bug/browse view. --- module/bug/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/bug/model.php b/module/bug/model.php index 1c709b555d..bfeffbed8f 100644 --- a/module/bug/model.php +++ b/module/bug/model.php @@ -2537,7 +2537,7 @@ class bugModel extends model if($bug->assignedTo == $account) $btnTextClass = 'text-red'; $btnClass = $assignedToText == 'closed' ? ' disabled' : ''; - echo html::a(helper::createLink('bug', 'assignTo', "bugID=$bug->id", '', true), " {$assignedToText}", '', "class='iframe btn btn-icon-left{$btnClass}'"); + echo html::a(helper::createLink('bug', 'assignTo', "bugID=$bug->id", '', true), " {$assignedToText}", '', "class='iframe btn btn-sm btn-icon-left{$btnClass}'"); break; case 'assignedDate': echo substr($bug->assignedDate, 5, 11);