From e99f2bcd8b3c091af57aeaf615c7cfff39c02f43 Mon Sep 17 00:00:00 2001 From: Michel Weststrate Date: Tue, 26 Nov 2019 07:13:31 -0800 Subject: [PATCH] Apply styling to support details form Summary: Applies some additional styling to the support details form, and implemented the screenshot / video styling. Probably needs some more fixes in the future, once we have a real report to import :) Reviewed By: jknoxville Differential Revision: D18658388 fbshipit-source-id: dc9207ec08b3f4360c96d8d14980710c57d6b5ec --- src/ui/components/Link.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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} + ); } }