Gaëtan Renaudeau
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
11 additions and
12 deletions
-
src/components/SettingsPage/sections/Help.js
|
|
@ -39,30 +39,29 @@ class SectionHelp extends PureComponent<Props> { |
|
|
|
/> |
|
|
|
|
|
|
|
<Body> |
|
|
|
<AboutRowItem |
|
|
|
title={t('app:settings.help.faq')} |
|
|
|
desc={t('app:settings.help.faqDesc')} |
|
|
|
url={urls.faq} |
|
|
|
/> |
|
|
|
<Row |
|
|
|
title={t('app:settings.profile.softResetTitle')} |
|
|
|
desc={t('app:settings.profile.softResetDesc')} |
|
|
|
> |
|
|
|
<CleanButton /> |
|
|
|
</Row> |
|
|
|
<Row |
|
|
|
title={t('app:settings.profile.hardResetTitle')} |
|
|
|
desc={t('app:settings.profile.hardResetDesc')} |
|
|
|
> |
|
|
|
<ResetButton /> |
|
|
|
</Row> |
|
|
|
<Row |
|
|
|
title={t('app:settings.exportLogs.title')} |
|
|
|
desc={t('app:settings.exportLogs.desc', { logsDirectory: resolveLogsDirectory() })} |
|
|
|
> |
|
|
|
<ExportLogsBtn /> |
|
|
|
</Row> |
|
|
|
|
|
|
|
<AboutRowItem |
|
|
|
title={t('app:settings.help.faq')} |
|
|
|
desc={t('app:settings.help.faqDesc')} |
|
|
|
url={urls.faq} |
|
|
|
/> |
|
|
|
<Row |
|
|
|
title={t('app:settings.profile.hardResetTitle')} |
|
|
|
desc={t('app:settings.profile.hardResetDesc')} |
|
|
|
> |
|
|
|
<ResetButton /> |
|
|
|
</Row> |
|
|
|
</Body> |
|
|
|
</Section> |
|
|
|
) |
|
|
|