diff --git a/web/.prettierignore b/web/.prettierignore
index 10541e2f8..894191488 100644
--- a/web/.prettierignore
+++ b/web/.prettierignore
@@ -4,5 +4,5 @@ coverage/
LICENSE
components.d.ts
src/assets/locales/*.json
-src/assets/timeAgoLocales/*.json
+src/assets/timeAgoLocales/
!src/assets/locales/en.json
diff --git a/web/src/components/pipeline-feed/PipelineFeedItem.vue b/web/src/components/pipeline-feed/PipelineFeedItem.vue
index 3e6b91f22..1d7790bf7 100644
--- a/web/src/components/pipeline-feed/PipelineFeedItem.vue
+++ b/web/src/components/pipeline-feed/PipelineFeedItem.vue
@@ -2,7 +2,14 @@
-
{{ repo?.owner }} / {{ repo?.name }}
+
{{ repo?.owner }} / {{ repo?.name }}
{{ title }}
diff --git a/web/src/components/repo/pipeline/PipelineStepList.vue b/web/src/components/repo/pipeline/PipelineStepList.vue
index 99d45d8ca..11e5e363d 100644
--- a/web/src/components/repo/pipeline/PipelineStepList.vue
+++ b/web/src/components/repo/pipeline/PipelineStepList.vue
@@ -10,21 +10,28 @@
{{ pipeline.author }}
-
+
+
+ {{ prettyRef }}
+
+
-
-
-
-
-
- {{ prettyRef }}
-
- {{ prettyRef }}
+
+
+ {{ prettyRef }}
+
+
+
+
+ {{ prettyRef }}
diff --git a/web/src/compositions/usePipeline.ts b/web/src/compositions/usePipeline.ts
index e10a7c9f8..c12a1fab0 100644
--- a/web/src/compositions/usePipeline.ts
+++ b/web/src/compositions/usePipeline.ts
@@ -87,7 +87,7 @@ export default (pipeline: Ref) => {
const title = computed(() => message.value.split('\n')[0]);
const prettyRef = computed(() => {
- if (pipeline.value?.event === 'push') {
+ if (pipeline.value?.event === 'push' || pipeline.value?.event === 'deployment') {
return pipeline.value.branch;
}