fix(menu): new page struct update in menu list

This commit is contained in:
Alexey Kasyanchuk 2018-07-09 02:15:37 +03:00
parent 064c93c176
commit a44769d350

View File

@ -14,7 +14,7 @@ export const manageMenuTemplateFunc = () => ({
},
},
{
label: __("Search"),
label: __("Feed"),
accelerator: "CmdOrCtrl+n",
click: () => {
BrowserWindow.getFocusedWindow().webContents.send('url', '/')
@ -26,6 +26,13 @@ export const manageMenuTemplateFunc = () => ({
click: () => {
BrowserWindow.getFocusedWindow().webContents.send('url', '/top')
},
},
{
label: __("Activity"),
accelerator: "CmdOrCtrl+m",
click: () => {
BrowserWindow.getFocusedWindow().webContents.send('url', '/activity')
},
}
]
});