Merge branch 'fix-registry-created-at-tooltip' into 'master'
Add missing tooltip to creation date on container registry overview Closes #34229 See merge request gitlab-org/gitlab-ce!18767
This commit is contained in:
commit
a75e082bf2
2 changed files with 12 additions and 1 deletions
|
@ -111,7 +111,13 @@
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
{{ timeFormated(item.createdAt) }}
|
<span
|
||||||
|
v-tooltip
|
||||||
|
:title="tooltipTitle(item.createdAt)"
|
||||||
|
data-placement="bottom"
|
||||||
|
>
|
||||||
|
{{ timeFormated(item.createdAt) }}
|
||||||
|
</span>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class="content">
|
<td class="content">
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: 'Add missing tooltip to creation date on container registry overview'
|
||||||
|
merge_request: 18767
|
||||||
|
author: Lars Greiss
|
||||||
|
type: fixed
|
Loading…
Reference in a new issue