Truncate creation in list (#3952)

This commit is contained in:
qwerty287 2024-07-21 15:00:15 +02:00 committed by GitHub
parent aa8db526d3
commit 0863f5df8f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -64,7 +64,7 @@
<div class="flex space-x-2 items-center min-w-0" :title="$t('repo.pipeline.created', { created })">
<Icon name="since" />
<span>{{ since }}</span>
<span class="truncate">{{ since }}</span>
</div>
</div>
</div>

View file

@ -64,11 +64,11 @@
<template #tabActions>
<div class="flex gap-x-4">
<div class="flex space-x-1 items-center flex-shrink-0" :title="created">
<div class="flex space-x-1 items-center flex-shrink-0" :title="$t('repo.pipeline.created', { created })">
<Icon name="since" />
<span>{{ since }}</span>
</div>
<div class="flex space-x-1 items-center flex-shrink-0">
<div class="flex space-x-1 items-center flex-shrink-0" :title="$t('repo.pipeline.duration')">
<Icon name="duration" />
<span>{{ duration }}</span>
</div>