feat(menu): report bug in application

This commit is contained in:
Alexey Kasyanchuk 2018-03-01 18:01:18 +03:00
parent aa9a32fd4e
commit 3eda3f84ca

View File

@ -32,7 +32,14 @@ export const aboutMenuTemplate = {
win.webContents.on('will-navigate', handleRedirect) win.webContents.on('will-navigate', handleRedirect)
win.webContents.on('new-window', handleRedirect) win.webContents.on('new-window', handleRedirect)
} },
},
{
label: "Bug Report",
accelerator: "CmdOrCtrl+[",
click: () => {
shell.openExternal('https://github.com/DEgITx/rats-search/issues')
},
} }
] ]
}; };