Merge pull request #2103 from ykris45/patch-4

Add FAQ and Some Link in Report pages
This commit is contained in:
Sean Yesmunt 2018-11-12 18:59:15 -05:00 committed by GitHub
commit f4d1a4e14c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 27 additions and 15 deletions

View file

@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
* Adds Persistence to File List Filter Selections ([#2050](https://github.com/lbryio/lbry-desktop/pull/2050))
* Add more share options for channel page ([#2088](https://github.com/lbryio/lbry-desktop/pull/2088))
* Better error handling on app startup ([#2098](https://github.com/lbryio/lbry-desktop/pull/2098))
* Add FAQ and Some Link in Report pages ([#2103](https://github.com/lbryio/lbry-desktop/pull/2103))
### Changed
* Upgraded to lbrynet v0.30.0 ([#1998](https://github.com/lbryio/lbry-desktop/pull/1998))

View file

@ -173,7 +173,8 @@ class HelpPage extends React.PureComponent<Props, State> {
<section className="card card--section">
<div className="card__title">{__('Report a Bug or Suggest a New Feature')}</div>
<p className="card__subtitle">
{__('Did you find something wrong? Think LBRY could add something useful and cool?')}
{__('Did you find something wrong? Think LBRY could add something useful and cool?')}{' '}
<Button button="link" label={__('Learn more')} href="https://lbry.io/faq/support" />
</p>
<div className="card__actions">
<Button

View file

@ -48,13 +48,13 @@ class ReportPage extends React.Component {
return (
<Page>
<section className="card card--section">
<div className="card__title">{__('Report an Issue/Request a Feature')}</div>
<p className="card__subtitle">
{__(
'Please describe the problem you experienced or the feature you want to see and any information you think might be useful to us. Links to screenshots are great!'
)}
</p>
<div className="card__content">
<div className="card__title">{__('Report an Issue/Request a Feature')}</div>
<p>
{__(
'Please describe the problem you experienced or the feature you want to see and any information you think might be useful to us. Links to screenshots are great!'
)}
</p>
<FormRow>
<FormField
type="textarea"
@ -83,14 +83,24 @@ class ReportPage extends React.Component {
</section>
<section className="card card--section">
<div className="card__title">{__('Developer?')}</div>
<p>
{__('You can also')}{' '}
<Button
button="link"
href="https://github.com/lbryio/lbry/issues"
label={__('submit an issue on GitHub')}
/>.
</p>
<div className="card__content">
<p>
{__('You can also')}{' '}
<Button
button="link"
href="https://github.com/lbryio/lbry-desktop/issues"
label={__('submit an issue on GitHub')}
/>.
</p>
<p>
{__('Explore our')}{' '}
<Button button="link" href="https://lbry.tech" label={__('technical resources')} />.
</p>
<p>
{__('Join our')}{' '}
<Button button="link" href="https://discourse.lbry.io/" label={__('tech forum')} />.
</p>
</div>
</section>
</Page>
);