Adds Narrative for Feature Request on Help Page and Report Page
This commit is contained in:
parent
850e187d4b
commit
1a8c1c5955
3 changed files with 16622 additions and 6 deletions
16614
package-lock.json
generated
Normal file
16614
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -109,13 +109,15 @@ class HelpPage extends React.PureComponent {
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section className="card card--section">
|
<section className="card card--section">
|
||||||
<div className="card__title">{__('Report a Bug')}</div>
|
<div className="card__title">{__('Report a Bug or Suggest a New Feature')}</div>
|
||||||
<p className="card__subtitle">{__('Did you find something wrong?')}</p>
|
<p className="card__subtitle">
|
||||||
|
{__('Did you find something wrong? Think LBRY could add something useful and cool?')}
|
||||||
|
</p>
|
||||||
|
|
||||||
<div className="card__actions">
|
<div className="card__actions">
|
||||||
<Button
|
<Button
|
||||||
navigate="/report"
|
navigate="/report"
|
||||||
label={__('Submit a Bug Report')}
|
label={__('Submit a Bug Report/Feature Request')}
|
||||||
icon={icons.REPORT}
|
icon={icons.REPORT}
|
||||||
button="primary"
|
button="primary"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -49,10 +49,10 @@ class ReportPage extends React.Component {
|
||||||
<Page>
|
<Page>
|
||||||
<section className="card card--section">
|
<section className="card card--section">
|
||||||
<div className="card__content">
|
<div className="card__content">
|
||||||
<div className="card__title">{__('Report an Issue')}</div>
|
<div className="card__title">{__('Report an Issue/Request a Feature')}</div>
|
||||||
<p>
|
<p>
|
||||||
{__(
|
{__(
|
||||||
'Please describe the problem you experienced 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>
|
||||||
<FormRow>
|
<FormRow>
|
||||||
|
@ -65,7 +65,7 @@ class ReportPage extends React.Component {
|
||||||
onChange={event => {
|
onChange={event => {
|
||||||
this.onMessageChange(event);
|
this.onMessageChange(event);
|
||||||
}}
|
}}
|
||||||
placeholder={__('Description of your issue')}
|
placeholder={__('Description of your issue or feature request')}
|
||||||
/>
|
/>
|
||||||
</FormRow>
|
</FormRow>
|
||||||
<div className="card__actions">
|
<div className="card__actions">
|
||||||
|
|
Loading…
Add table
Reference in a new issue