From 3a5787335e1b9fab995bb9aad063c875ecde8df2 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 b9567df8c..0fd471bb4 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)