mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
electron-17: added logic to open the completed directory under the crashes directory
This commit is contained in:
parent
40cf6b6d73
commit
6d0d5145af
@ -67,7 +67,10 @@ const template = [{
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Open Crashes Directory',
|
label: 'Open Crashes Directory',
|
||||||
click() { electron.shell.showItemInFolder(electron.crashReporter.getCrashesDirectory()); }
|
click() {
|
||||||
|
const crashesDirectory = electron.crashReporter.getCrashesDirectory() + '/completed';
|
||||||
|
electron.shell.showItemInFolder(crashesDirectory);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'separator'
|
type: 'separator'
|
||||||
|
Loading…
Reference in New Issue
Block a user