Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions client/src/app/components/pipeline/pipeline.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ <h3 class="text-xl mb-2">Pipeline</h3>
}
</div>
<!-- Fixed width to ensure consistent alignment -->
<span class="font-medium flex gap-1 items-center justify-between w-full overflow-hidden">
<span [pTooltip]="workflowRun.name" class="truncate">{{ workflowRun.name }}</span>
<span class="flex items-center gap-1">
<span class="font-medium flex gap-1 items-center w-full min-w-0 overflow-hidden">
<span [pTooltip]="workflowRun.name" class="truncate min-w-0 flex-1">{{ workflowRun.name }}</span>
<span class="flex items-center gap-1 flex-shrink-0">
@if (permissions.hasWritePermission() && !!workflowRun.id && !!repositoryId()) {
<a
[routerLink]="['/repo', repositoryId(), 'ci-cd', 'runs', workflowRun.id, 'logs']"
Expand Down
Loading