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