From 4fc1e2a0c35e7a1e2d44c9003e173701d70d55a0 Mon Sep 17 00:00:00 2001 From: xieqiyu Date: Fri, 17 Oct 2025 08:59:11 +0000 Subject: [PATCH] * [task#150912] Modify the style of stage list. --- module/stage/ui/browse.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/stage/ui/browse.html.php b/module/stage/ui/browse.html.php index 97a3e61f59..fefd1e8b11 100644 --- a/module/stage/ui/browse.html.php +++ b/module/stage/ui/browse.html.php @@ -15,7 +15,7 @@ featureBar(); $canCreateStage = hasPriv('stage', 'create'); $canbatchCreateStage = hasPriv('stage', 'batchCreate'); if($canCreateStage) $createItem = array('icon' => 'plus', 'class' => 'primary', 'text' => $lang->stage->create, 'url' => $this->createLink('stage', 'create', "groupID={$groupID}"), 'data-toggle' => 'modal'); -if($canbatchCreateStage) $batchCreateItem = array('icon' => 'plus', 'class' => 'primary mr-4', 'text' => $lang->stage->batchCreate, 'url' => $this->createLink('stage', 'batchCreate', "groupID={$groupID}")); +if($canbatchCreateStage) $batchCreateItem = array('icon' => 'plus', 'class' => 'primary', 'text' => $lang->stage->batchCreate, 'url' => $this->createLink('stage', 'batchCreate', "groupID={$groupID}")); toolbar ( !empty($batchCreateItem) ? item(set($batchCreateItem)) : null,