fix: new app table colume matches usual order now

This commit is contained in:
decentral1se 2022-01-04 11:56:17 +01:00
parent b61b8f0d2a
commit eed2756784
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ func NewAction(c *cli.Context) error {
NewAppServer = "local"
}
tableCol := []string{"Name", "Domain", "Type", "Server"}
tableCol := []string{"server", "type", "domain", "app name"}
table := formatter.CreateTable(tableCol)
table.Append([]string{sanitisedAppName, Domain, recipe.Name, NewAppServer})