Skip to content

Commit c81fd1d

Browse files
fix: correct default wsproxy table columns (coder#15124)
Closes coder#15123
1 parent bab17a3 commit c81fd1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

enterprise/cli/workspaceproxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ func (r *RootCmd) patchProxy() *serpent.Command {
102102
}),
103103
cliui.JSONFormat(),
104104
// Table formatter expects a slice, make a slice of one.
105-
cliui.ChangeFormatterData(cliui.TableFormat([]codersdk.WorkspaceProxy{}, []string{"proxy name", "proxy url"}),
105+
cliui.ChangeFormatterData(cliui.TableFormat([]codersdk.WorkspaceProxy{}, []string{"name", "url"}),
106106
func(data any) (any, error) {
107107
response, ok := data.(codersdk.WorkspaceProxy)
108108
if !ok {

0 commit comments

Comments
 (0)