From 51dd42ceeb3565f430a9861dba5132af47614872 Mon Sep 17 00:00:00 2001 From: qwerty287 <80460567+qwerty287@users.noreply.github.com> Date: Mon, 30 Dec 2024 11:44:07 +0200 Subject: [PATCH] Two row layout for title and context of pipeline list (#4625) Co-authored-by: Anbraten Co-authored-by: 6543 <6543@obermui.de> --- .../components/repo/pipeline/PipelineItem.vue | 87 +++++++++++-------- 1 file changed, 50 insertions(+), 37 deletions(-) diff --git a/web/src/components/repo/pipeline/PipelineItem.vue b/web/src/components/repo/pipeline/PipelineItem.vue index e943de2a6..86f58aae2 100644 --- a/web/src/components/repo/pipeline/PipelineItem.vue +++ b/web/src/components/repo/pipeline/PipelineItem.vue @@ -1,8 +1,8 @@ @@ -90,7 +102,8 @@ const props = defineProps<{ const { t } = useI18n(); const pipeline = toRef(props, 'pipeline'); -const { since, duration, message, shortMessage, prettyRef, created } = usePipeline(pipeline); +const { since, duration, message, shortMessage, prettyRef, created, prTitle, prTitleWithDescription } = + usePipeline(pipeline); const pipelineEventTitle = computed(() => { switch (pipeline.value.event) {