fix: upgrade modal styling

This commit is contained in:
Sean Yesmunt 2018-04-16 18:51:35 -04:00
parent 71d97ad413
commit ea7ae8a03d

View file

@ -1,10 +1,8 @@
import React from 'react';
import { ipcRenderer } from 'electron';
import { Modal } from 'modal/modal';
import { Line } from 'rc-progress';
import Button from 'component/button';
const { ipcRenderer } = require('electron');
class ModalAutoUpdateDownloaded extends React.PureComponent {
render() {
const { closeModal, declineAutoUpdate } = this.props;
@ -32,6 +30,14 @@ class ModalAutoUpdateDownloaded extends React.PureComponent {
'A new version of LBRY has been released, downloaded, and is ready for you to use pending a restart.'
)}
</p>
<p className="meta text-center">
{__('Want to know what has changed?')} See the{' '}
<Button
button="link"
label={__('release notes')}
href="https://github.com/lbryio/lbry-app/releases"
/>.
</p>
</section>
</Modal>
);