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 className="card card--section">
|
||||
<div className="card__title">{__('Report a Bug')}</div>
|
||||
<p className="card__subtitle">{__('Did you find something wrong?')}</p>
|
||||
<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?')}
|
||||
</p>
|
||||
|
||||
<div className="card__actions">
|
||||
<Button
|
||||
navigate="/report"
|
||||
label={__('Submit a Bug Report')}
|
||||
label={__('Submit a Bug Report/Feature Request')}
|
||||
icon={icons.REPORT}
|
||||
button="primary"
|
||||
/>
|
||||
|
|
|
@ -49,10 +49,10 @@ class ReportPage extends React.Component {
|
|||
<Page>
|
||||
<section className="card card--section">
|
||||
<div className="card__content">
|
||||
<div className="card__title">{__('Report an Issue')}</div>
|
||||
<div className="card__title">{__('Report an Issue/Request a Feature')}</div>
|
||||
<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>
|
||||
<FormRow>
|
||||
|
@ -65,7 +65,7 @@ class ReportPage extends React.Component {
|
|||
onChange={event => {
|
||||
this.onMessageChange(event);
|
||||
}}
|
||||
placeholder={__('Description of your issue')}
|
||||
placeholder={__('Description of your issue or feature request')}
|
||||
/>
|
||||
</FormRow>
|
||||
<div className="card__actions">
|
||||
|
|
Loading…
Add table
Reference in a new issue