add help button
This commit is contained in:
parent
12289792da
commit
9ce6f9564c
1 changed files with 4 additions and 0 deletions
|
@ -397,6 +397,9 @@ const MenuButton = withRouter(function MenuButton({ history }) {
|
|||
case 'settings':
|
||||
history.push('/settings');
|
||||
break;
|
||||
case 'help':
|
||||
window.open("https://actualbudget.github.io/docs","_self");
|
||||
break;
|
||||
case 'close':
|
||||
dispatch(closeBudget());
|
||||
break;
|
||||
|
@ -411,6 +414,7 @@ const MenuButton = withRouter(function MenuButton({ history }) {
|
|||
{ name: 'repair-splits', text: 'Repair split transactions' },
|
||||
Menu.line,
|
||||
{ name: 'settings', text: 'Settings' },
|
||||
{ name: 'help', text: 'Help'},
|
||||
{ name: 'close', text: 'Close File' }
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue