diff --git a/cli/app/list.go b/cli/app/list.go index df9db820..38baa6db 100644 --- a/cli/app/list.go +++ b/cli/app/list.go @@ -215,7 +215,7 @@ can take some time. serverStat := allStats[app.Server] - tableCol := []string{"recipe", "app name", "domain"} + tableCol := []string{"recipe", "domain", "app name"} if status { tableCol = append(tableCol, []string{"status", "version", "upgrade"}...) } @@ -223,7 +223,7 @@ can take some time. table := formatter.CreateTable(tableCol) for _, appStat := range serverStat.apps { - tableRow := []string{appStat.recipe, appStat.appName, appStat.domain} + tableRow := []string{appStat.recipe, appStat.domain, appStat.appName} if status { tableRow = append(tableRow, []string{appStat.status, appStat.version, appStat.upgrade}...) }