Skip to content
This repository was archived by the owner on Jul 15, 2022. It is now read-only.

Commit 0d68fcf

Browse files
author
Leonardo Chaia
committed
fix: fixed container naming on lists
1 parent aa8a70c commit 0d68fcf

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

src/app/daemon-tools/container-list/container-list.component.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ <h2 style="margin-bottom: 0">
2323
{{container.State}}
2424
</small>
2525
<br>
26-
<code>{{container.Id | slice:0:12}} {{container.Image}}</code>
26+
<code title="Container Id">{{container.Id | slice:0:12}}</code>
27+
<code title="Image"> {{getImageName(container)}}</code>
2728
</h2>
2829
<tim-loading [alternative]="true"
2930
*ngIf="loadingMap.get(container.Id)"></tim-loading>

src/app/daemon-tools/container-list/container-list.component.ts

+8
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,14 @@ export class ContainerListComponent implements OnInit, OnDestroy {
9898
});
9999
}
100100

101+
public getImageName(container: ContainerInfo) {
102+
if (container.Image.startsWith('sha256:')) {
103+
return container.Image.replace('sha256:', '').slice(0, 12);
104+
} else {
105+
return container.Image;
106+
}
107+
}
108+
101109
public ngOnDestroy() {
102110
this.componetDestroyed.next();
103111
this.componetDestroyed.unsubscribe();

0 commit comments

Comments
 (0)