From 7328926ad75ab4ae5c74f2ce9e87729c93914138 Mon Sep 17 00:00:00 2001 From: Ryan Yun Date: Fri, 22 Sep 2017 11:20:06 -0400 Subject: [PATCH] link button needs a span tag around button label --- .../client/components/PermalinkButton.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/talk-plugin-permalink/client/components/PermalinkButton.js b/plugins/talk-plugin-permalink/client/components/PermalinkButton.js index 5c05b0438..80f260d54 100644 --- a/plugins/talk-plugin-permalink/client/components/PermalinkButton.js +++ b/plugins/talk-plugin-permalink/client/components/PermalinkButton.js @@ -73,7 +73,9 @@ export default class PermalinkButton extends React.Component { ref={(ref) => this.linkButton = ref} onClick={this.toggle} className={cn(`${name}-button`, styles.button)}> - {t('permalink')} + + {t('permalink')} +