Skip to content

Commit

Permalink
fix: Workspace ls show only me by default (#5107)
Browse files Browse the repository at this point in the history
  • Loading branch information
Emyrk committed Nov 16, 2022
1 parent 015a6f9 commit 894953d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,6 @@ func list() *cobra.Command {
"Specifies whether all workspaces will be listed or not.")
cmd.Flags().StringArrayVarP(&columns, "column", "c", nil,
fmt.Sprintf("Specify a column to filter in the table. Available columns are: %v", columnString))
cmd.Flags().StringVar(&searchQuery, "search", "", "Search for a workspace with a query.")
cmd.Flags().StringVar(&searchQuery, "search", defaultQuery, "Search for a workspace with a query.")
return cmd
}

0 comments on commit 894953d

Please sign in to comment.