Merge pull request #1914 from lachie83/bugfix-match-history-maxcolwidth

(bugfix/cmd/helm/history): update history table MaxColWidth
pull/1626/merge
Taylor Thomas 8 years ago committed by GitHub
commit 2c5e8d5bd4

@ -97,7 +97,7 @@ func (cmd *historyCmd) run() error {
func formatHistory(rls []*release.Release) string {
tbl := uitable.New()
tbl.MaxColWidth = 30
tbl.MaxColWidth = 60
tbl.AddRow("REVISION", "UPDATED", "STATUS", "CHART", "DESCRIPTION")
for i := len(rls) - 1; i >= 0; i-- {
r := rls[i]

Loading…
Cancel
Save