diff --git a/src/ui/components/Link.tsx b/src/ui/components/Link.tsx index 79c611156..93302a32d 100644 --- a/src/ui/components/Link.tsx +++ b/src/ui/components/Link.tsx @@ -32,7 +32,9 @@ export default class Link extends Component<{ render() { return ( - {this.props.children} + + {this.props.children || this.props.href} + ); } }