Merge pull request #2103 from ykris45/patch-4
Add FAQ and Some Link in Report pages
This commit is contained in:
commit
f4d1a4e14c
3 changed files with 27 additions and 15 deletions
|
@ -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))
|
* 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))
|
* 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))
|
* 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
|
### Changed
|
||||||
* Upgraded to lbrynet v0.30.0 ([#1998](https://github.com/lbryio/lbry-desktop/pull/1998))
|
* Upgraded to lbrynet v0.30.0 ([#1998](https://github.com/lbryio/lbry-desktop/pull/1998))
|
||||||
|
|
|
@ -173,7 +173,8 @@ class HelpPage extends React.PureComponent<Props, State> {
|
||||||
<section className="card card--section">
|
<section className="card card--section">
|
||||||
<div className="card__title">{__('Report a Bug or Suggest a New Feature')}</div>
|
<div className="card__title">{__('Report a Bug or Suggest a New Feature')}</div>
|
||||||
<p className="card__subtitle">
|
<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>
|
</p>
|
||||||
<div className="card__actions">
|
<div className="card__actions">
|
||||||
<Button
|
<Button
|
||||||
|
|
|
@ -48,13 +48,13 @@ class ReportPage extends React.Component {
|
||||||
return (
|
return (
|
||||||
<Page>
|
<Page>
|
||||||
<section className="card card--section">
|
<section className="card card--section">
|
||||||
<div className="card__content">
|
|
||||||
<div className="card__title">{__('Report an Issue/Request a Feature')}</div>
|
<div className="card__title">{__('Report an Issue/Request a Feature')}</div>
|
||||||
<p>
|
<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!'
|
'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>
|
</p>
|
||||||
|
<div className="card__content">
|
||||||
<FormRow>
|
<FormRow>
|
||||||
<FormField
|
<FormField
|
||||||
type="textarea"
|
type="textarea"
|
||||||
|
@ -83,14 +83,24 @@ class ReportPage extends React.Component {
|
||||||
</section>
|
</section>
|
||||||
<section className="card card--section">
|
<section className="card card--section">
|
||||||
<div className="card__title">{__('Developer?')}</div>
|
<div className="card__title">{__('Developer?')}</div>
|
||||||
|
<div className="card__content">
|
||||||
<p>
|
<p>
|
||||||
{__('You can also')}{' '}
|
{__('You can also')}{' '}
|
||||||
<Button
|
<Button
|
||||||
button="link"
|
button="link"
|
||||||
href="https://github.com/lbryio/lbry/issues"
|
href="https://github.com/lbryio/lbry-desktop/issues"
|
||||||
label={__('submit an issue on GitHub')}
|
label={__('submit an issue on GitHub')}
|
||||||
/>.
|
/>.
|
||||||
</p>
|
</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>
|
</section>
|
||||||
</Page>
|
</Page>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue