Skip to content

Commit b2cfd86

Browse files
committed
fix(ske): cluster describe command prints not correctly the name
1 parent 6628b23 commit b2cfd86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/cmd/ske/cluster/describe/describe.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ func outputResult(p *print.Printer, outputFormat string, cluster *ske.Cluster) e
101101
}
102102

103103
table := tables.NewTable()
104-
table.AddRow("NAME", cluster.Name)
104+
table.AddRow("NAME", utils.PtrString(cluster.Name))
105105
table.AddSeparator()
106106
if cluster.HasStatus() {
107107
table.AddRow("STATE", utils.PtrString(cluster.Status.Aggregated))

0 commit comments

Comments
 (0)