From 145e6326c970b54cea8e729f493da714923eb5fc Mon Sep 17 00:00:00 2001 From: decentral1se Date: Mon, 26 Jul 2021 19:49:51 +0200 Subject: [PATCH] fix: use domain to follow original abra app ls --- cli/app.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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