diff --git a/cli/app.go b/cli/app.go index b021618c..c6b9c097 100644 --- a/cli/app.go +++ b/cli/app.go @@ -60,11 +60,11 @@ var appListCommand = &cli.Command{ } apps, err := config.GetApps(appFiles) sort.Sort(config.ByServerAndType(apps)) - tableCol := []string{"Server", "Type", "Name"} + tableCol := []string{"Server", "Type", "Domain"} table := createTable(tableCol) table.SetAutoMergeCellsByColumnIndex([]int{0}) for _, app := range apps { - table.Append([]string{app.File.Server, app.Type, app.Name}) + table.Append([]string{app.File.Server, app.Type, app.Domain}) } table.Render() return nil