fix typo
This commit is contained in:
parent
d7b1cde274
commit
606a3002ae
1 changed files with 13 additions and 3 deletions
|
@ -174,7 +174,7 @@ class HelpPage extends React.PureComponent<Props, State> {
|
||||||
}
|
}
|
||||||
actions={
|
actions={
|
||||||
<div className="section__actions">
|
<div className="section__actions">
|
||||||
<Button navigate="/$/report" label={__('Submit Feedback')} icon={icons.FEEDBACK} button="secondary" />
|
<Button navigate="/$/report" label={__('Submit Feedback')} icon={ICONS.FEEDBACK} button="secondary" />
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
@ -193,8 +193,18 @@ class HelpPage extends React.PureComponent<Props, State> {
|
||||||
}
|
}
|
||||||
actions={
|
actions={
|
||||||
<div className="section__actions">
|
<div className="section__actions">
|
||||||
<Button button="secondary" label={__('Open Log')} icon={icons.OPEN_LOG} onClick={() => this.openLogFile(dataDirectory)} />
|
<Button
|
||||||
<Button button="secondary" label={__('Open Log Folder')} icon={icons.OPEN_LOG_FOLDER} onClick={() => shell.openItem(dataDirectory)} />
|
button="secondary"
|
||||||
|
label={__('Open Log')}
|
||||||
|
icon={ICONS.OPEN_LOG}
|
||||||
|
onClick={() => this.openLogFile(dataDirectory)}
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
button="secondary"
|
||||||
|
label={__('Open Log Folder')}
|
||||||
|
icon={ICONS.OPEN_LOG_FOLDER}
|
||||||
|
onClick={() => shell.openItem(dataDirectory)}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in a new issue