diff options
Diffstat (limited to 'web/react')
-rw-r--r-- | web/react/components/post_info.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/post_info.jsx b/web/react/components/post_info.jsx index 9c53704b8..dd2b154a0 100644 --- a/web/react/components/post_info.jsx +++ b/web/react/components/post_info.jsx @@ -183,7 +183,7 @@ export default class PostInfo extends React.Component { var dropdown = this.createDropdown(); const permalink = TeamStore.getCurrentTeamUrl() + '/pl/' + post.id; - const copyButtonText = this.state.copiedLink ? (<div>{'Copy X '}<i className='fa fa-check'/></div>) : 'Copy X'; + const copyButtonText = this.state.copiedLink ? (<div>{'Copy '}<i className='fa fa-check'/></div>) : 'Copy'; const permalinkOverlay = ( <Popover id='permalink-overlay' |