Skip to content

Commit

Permalink
only display chan sequence when actually set
Browse files Browse the repository at this point in the history
  • Loading branch information
pandemicsyn committed Jan 21, 2025
1 parent d727439 commit 6111370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/print/channel_attributes.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var channelAttrsTmplSrc = `ID: {{ .Chan.ID }}
NAME: {{ .Chan.Name }}
DESCRIPTION: {{ .Chan.Description }}
RELEASE: {{ if ge .Chan.ReleaseSequence 1 }}{{ .Chan.ReleaseSequence }}{{ else }} {{ end }}
CHANNEL SEQUENCE: {{ .Chan.ChannelSequence }}
CHANNEL SEQUENCE: {{ if ge .Chan.ChannelSequence 1 }}{{ .Chan.ChannelSequence }}{{ else }} {{ end }}
VERSION: {{ .Chan.ReleaseLabel }}
{{ if not .Chan.IsHelmOnly -}}
{{ with .Existing -}}
Expand Down

0 comments on commit 6111370

Please sign in to comment.