diff --git a/web/src/lib/components/repo/pipelines/PipelineToolbar.svelte b/web/src/lib/components/repo/pipelines/PipelineToolbar.svelte
index 75007d72..c4fd199d 100644
--- a/web/src/lib/components/repo/pipelines/PipelineToolbar.svelte
+++ b/web/src/lib/components/repo/pipelines/PipelineToolbar.svelte
@@ -8,7 +8,7 @@
search: "col-span-3 sm:col-span-1 sm:col-start-2",
group: "sm:row-start-1",
count:
- "col-start-3 row-start-2 self-center justify-self-end typography-paragraph-small whitespace-nowrap text-foreground-muted sm:row-start-1",
+ "col-start-3 row-start-2 flex items-center gap-2 self-center justify-self-end typography-paragraph-small whitespace-nowrap text-foreground-muted sm:row-start-1 md:mr-2.5 md:ml-2",
qualifier: "hidden sm:inline"
}
});
@@ -19,6 +19,7 @@
import { resolve } from "$app/paths";
import GitCommitHorizontal from "$icon/git-commit-horizontal";
import GitPullRequest from "$icon/git-pull-request";
+ import Play from "$icon/play";
import Layers2 from "$icon/layers-2";
import Button from "$lib/components/ui/Button.svelte";
import ButtonGroup, { segmentProps } from "$lib/components/ui/ButtonGroup.svelte";
@@ -54,10 +55,11 @@
-
-
- {total} pipeline {total === 1 ? "run" : "runs"}
-
+ {#if total > 0}
+
+
+ {total} pipeline {total === 1 ? "run" : "runs"}
+
+ {/if}