Skip to content

Commit

Permalink
Fixes #901
Browse files Browse the repository at this point in the history
  • Loading branch information
Hallbergs committed Nov 11, 2021
1 parent 38be362 commit 3b49001
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions new-client/src/components/FeatureInfo/FeaturePropsParsing.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,11 @@ export default class FeaturePropsParsing {
},
hr: () => <Divider />,
a: ({ children, href, title }) => {
return (
return children ? (
<Link href={href} title={title} target="_blank">
{children}
</Link>
);
) : null;
},
h1: this.#markdownHeaderComponent,
h2: this.#markdownHeaderComponent,
Expand Down

0 comments on commit 3b49001

Please sign in to comment.