Merge pull request #2102 from adamreese/fix/2098-repo-list

fix(helm): remove max column width for repo list
pull/2120/head
Adam Reese 8 years ago committed by GitHub
commit a90638e4f4

@ -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)

Loading…
Cancel
Save