Add FAQ and Some Link in Report pages #2103

Merged
ykris45 merged 4 commits from patch-4 into master 2018-11-13 00:59:16 +01:00
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>
);