From dfb2c3e7977a77fde27936572b56b0912e2e685a Mon Sep 17 00:00:00 2001 From: William Grant Date: Mon, 20 Jun 2022 15:13:31 +1000 Subject: [PATCH] fix: pass yarn ready tests --- stylesheets/_session.scss | 6 +++--- ts/mains/main_node.ts | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/stylesheets/_session.scss b/stylesheets/_session.scss index 4d9a23d5a..616af58e1 100644 --- a/stylesheets/_session.scss +++ b/stylesheets/_session.scss @@ -39,9 +39,9 @@ textarea { input, textarea { user-select: text; - a { - word-break: break-all; - } + a { + word-break: break-all; + } } } diff --git a/ts/mains/main_node.ts b/ts/mains/main_node.ts index ba9533937..0c486ad00 100644 --- a/ts/mains/main_node.ts +++ b/ts/mains/main_node.ts @@ -689,6 +689,7 @@ async function saveDebugLog(_event: any, logText: any) { if (result === undefined || outputPath === undefined || outputPath === '') { throw Error("User clicked Save button but didn't create a file"); } + // tslint:disable: non-literal-fs-path fs.writeFile(outputPath, logText, err => { if (err) { throw Error(`${err}`); @@ -696,9 +697,9 @@ async function saveDebugLog(_event: any, logText: any) { console.info(`Saved log - ${outputPath}`); }); } catch (err) { - console.error(`Error saving debug log`, err); + console.error('Error saving debug log', err); } -}; +} // This method will be called when Electron has finished // initialization and is ready to create browser windows.