Skip to content

Commit

Permalink
fix: inline markdown regression
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanHotsiy committed Jun 29, 2018
1 parent c5e9030 commit e1c9e19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/Markdown/Markdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ function SanitizedMarkdownHTML(props: StylingMarkdownProps & { html: string }) {
dangerouslySetInnerHTML={{
__html: sanitize(options.untrustedSpec, props.html),
}}
{...props}
/>
)}
</OptionsContext.Consumer>
Expand Down
2 changes: 1 addition & 1 deletion src/components/ResponseSamples/ResponseSamples.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class ResponseSamples extends React.Component<ResponseSamplesProps> {
</TabList>
{responses.map(response => (
<TabPanel key={response.code}>
<PayloadSamples content={response.content!} />;
<PayloadSamples content={response.content!} />
</TabPanel>
))}
</Tabs>
Expand Down

0 comments on commit e1c9e19

Please sign in to comment.