This commit is contained in:
zxawry 2019-05-12 18:59:57 +01:00 committed by Sean Yesmunt
parent a83e06d622
commit 75a6e8baba
2 changed files with 7 additions and 11 deletions

View file

@ -81,12 +81,10 @@ class FileDownloadLink extends React.PureComponent<Props> {
button="alt"
iconColor="green"
icon={ICONS.EXTERNAL}
onClick={
() => {
onClick={() => {
pause();
openModal(MODALS.CONFIRM_EXTERNAL_RESOURCE, { path: fileInfo.download_path });
}
}
}}
/>
</ToolTip>
);

View file

@ -58,10 +58,8 @@ class ModalOpenExternalResource extends React.PureComponent<Props> {
>
<section className="card__content">
<p>
{
(uri && __('This link leads to an external website.')) ||
(path && __('This file has been shared with you by other people.'))
}
{(uri && __('This link leads to an external website.')) ||
(path && __('This file has been shared with you by other people.'))}
</p>
<blockquote>{uri || path}</blockquote>
<p>{__('LBRY Inc is not responsible for its content, click continue to proceed at your own risk.')}</p>