diff --git a/module/common/model.php b/module/common/model.php
index 14e0311bee..5b88b47fa7 100644
--- a/module/common/model.php
+++ b/module/common/model.php
@@ -1365,13 +1365,13 @@ EOD;
$showCount = 0;
foreach($executionPairs as $executionID => $executionName)
{
- $html .= "
" . html::a(helper::createLink('execution', 'task', "executionID=$executionID"), $executionName, '', "title='{$executionName}' class='text-ellipsis'") . '';
+ $html .= "" . html::a(helper::createLink('execution', 'task', "executionID=$executionID"), $executionName, '', "title='{$executionName}' class='text-ellipsis' style='padding: 2px 10px'") . '';
$showCount ++;
if($showCount == 10) break;
}
- if(count($executionPairs) > 10) $html .= '' . html::a(helper::createLink('project', 'execution', "status=all&projectID={$object->project}"), $lang->preview . $lang->more, '', "data-app='project'") . '';
+ if(count($executionPairs) > 10) $html .= '' . html::a(helper::createLink('project', 'execution', "status=all&projectID={$object->project}"), $lang->preview . $lang->more, '', "data-app='project' style='padding: 2px 10px'") . '';
$html .= "\n";