From 91c34afc66d274c1e6beda4aac644eb26b7aa6a9 Mon Sep 17 00:00:00 2001 From: Adam Reese Date: Fri, 10 Mar 2017 16:08:53 -0800 Subject: [PATCH] fix(helm): remove max column width for repo list closes #2098 --- cmd/helm/repo_list.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/helm/repo_list.go b/cmd/helm/repo_list.go index a3816facd..8343dc352 100644 --- a/cmd/helm/repo_list.go +++ b/cmd/helm/repo_list.go @@ -59,7 +59,6 @@ func (a *repoListCmd) run() error { return errors.New("no repositories to show") } table := uitable.New() - table.MaxColWidth = 50 table.AddRow("NAME", "URL") for _, re := range f.Repositories { table.AddRow(re.Name, re.URL)