Skip to content

Commit

Permalink
fix: show examples for response headers
Browse files Browse the repository at this point in the history
fixes #575
  • Loading branch information
RomanHotsiy committed Jul 31, 2018
1 parent 15dfe44 commit ba22b1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Responses/ResponseHeaders.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class ResponseHeaders extends React.PureComponent<ResponseHeadersProps> {
<HeadersCaption> Response Headers </HeadersCaption>
<tbody>
{mapWithLast(headers, (header, isLast) => (
<Field isLast={isLast} key={header.name} field={header} />
<Field isLast={isLast} key={header.name} field={header} showExamples={true} />
))}
</tbody>
</PropertiesTable>
Expand Down

0 comments on commit ba22b1e

Please sign in to comment.