Skip to content

Commit 30e37f3

Browse files
authored
add Cluster ID tooltip to cluster and project overview (#7693)
Signed-off-by: Fabio Berchtold <fabio.berchtold@swisscom.com>
1 parent 1b50ca0 commit 30e37f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/web/src/app/cluster/list/cluster/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
[attr.id]="'km-clusters-' + element.name">
9090
<div fxLayoutAlign=" center"
9191
fxLayoutGap="8px">
92-
<span>{{element.name}}</span>
92+
<span matTooltip="Cluster ID: {{element.id}}">{{element.name}}</span>
9393
@if (isRestoring(element.id)) {
9494
<div class="km-update-available-badge">
9595
Restoring

modules/web/src/app/project-overview/clusters-overview/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
*matCellDef="let cluster">
4242
<div fxLayoutAlign=" center"
4343
fxLayoutGap="8px">
44-
{{cluster.name}}
44+
<span matTooltip="Cluster ID: {{cluster.id}}">{{cluster.name}}</span>
4545
</div>
4646
</td>
4747
</ng-container>

0 commit comments

Comments
 (0)