Skip to content

Commit

Permalink
refactor: Change order of stack in table
Browse files Browse the repository at this point in the history
  • Loading branch information
0michalsokolowski0 committed Aug 28, 2024
1 parent 39b1203 commit 2d7797c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/cmd/stack/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ func listStacksJSON(ctx *cli.Context) error {
func listStacksTable(ctx *cli.Context) error {
stacks, err := searchStacks(ctx.Context, structs.SearchInput{
OrderBy: &structs.QueryOrder{
Field: "name",
Direction: "ASC",
Field: "starred",
Direction: "DESC",
},
})
if err != nil {
Expand Down

0 comments on commit 2d7797c

Please sign in to comment.