diff --git a/cli/app/list.go b/cli/app/list.go index 91404902..912d4f07 100644 --- a/cli/app/list.go +++ b/cli/app/list.go @@ -200,7 +200,10 @@ can take some time. allStats[app.Server] = stats } - for serverName, serverStat := range allStats { + for _, app := range apps { + serverName := app.Server + serverStat := allStats[serverName] + tableCol := []string{"recipe", "app name", "domain"} if status { tableCol = append(tableCol, []string{"status", "version", "upgrade"}...)