postmanerator
postmanerator copied to clipboard
Request Headers are not shown
Request headers are shown as "None" or nothing (??) in the html output. All Routes have at least one header.
Tried with latest version + the 'default' and the 'elegance' theme.
default theme: {{ range $res.Headers }}
elegance theme:
Headers
{{ if eq (len $req.Headers) 0 }}-
{{ range $req.Headers }}
- {{ .Name }}
- {{ .Value }} {{ end }}
None
{{ end }}
{{ if eq (len $req.Headers) 1 }}
... fixes it.