Skip to content

Commit

Permalink
Merge pull request #2103 from ykris45/patch-4
Browse files Browse the repository at this point in the history
Add FAQ and Some Link in Report pages
  • Loading branch information
Sean Yesmunt authored Nov 12, 2018
2 parents cf45aa6 + d740b26 commit f4d1a4e
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 15 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
3 changes: 2 additions & 1 deletion src/renderer/page/help/view.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
38 changes: 24 additions & 14 deletions src/renderer/page/report/view.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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>
);
Expand Down

0 comments on commit f4d1a4e

Please sign in to comment.