mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-12 12:15:00 +00:00
Truncate creation in list (#3952)
This commit is contained in:
parent
aa8db526d3
commit
0863f5df8f
2 changed files with 3 additions and 3 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue