Filter sha256-only containers, truncate long image tags
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
@@ -55,7 +55,7 @@ export function DockerUpdatesWidget() {
|
||||
<div className="list-item-left" style={{ flexDirection: 'column', alignItems: 'flex-start', gap: 2 }}>
|
||||
<span>{c.name}</span>
|
||||
<span style={{ fontFamily: 'JetBrains Mono, monospace', fontSize: 10, color: 'var(--muted)' }}>
|
||||
{c.image}:{c.tag} · {c.endpoint}
|
||||
{c.image}:{c.tag.startsWith('sha256:') ? c.tag.slice(0, 15) + '…' : c.tag} · {c.endpoint}
|
||||
</span>
|
||||
</div>
|
||||
{c.upToDate === null && c.registry !== 'docker.io' && c.registry !== 'ghcr.io' ? (
|
||||
|
||||
Reference in New Issue
Block a user