Skip to content

Commit 6b1ea24

Browse files
authored
fix: remove URL from table view for serviceregistry list command (#809)
1 parent e1f5747 commit 6b1ea24

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pkg/cmd/registry/list/list.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import (
2727
type RegistryRow struct {
2828
ID string `json:"id" header:"ID"`
2929
Name string `json:"name" header:"Name"`
30-
URL string `json:"registryUrl" header:"Registry URL"`
3130
Owner string `json:"owner" header:"Owner"`
3231
Status string `json:"status" header:"Status"`
3332
}
@@ -137,7 +136,6 @@ func mapResponseItemsToRows(registries *[]srsmgmtv1.RegistryRest) []RegistryRow
137136
row := RegistryRow{
138137
ID: fmt.Sprint(k.Id),
139138
Name: k.GetName(),
140-
URL: k.GetRegistryUrl(),
141139
Status: string(k.GetStatus()),
142140
Owner: k.GetOwner(),
143141
}

0 commit comments

Comments
 (0)