Skip to content

Commit ea592ae

Browse files
committed
lint
1 parent 51bf6ad commit ea592ae

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

apps/twig/src/main/menu.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,10 @@ function buildFileMenu(): MenuItemConstructorOptions {
133133
return;
134134
}
135135

136-
const timestamp = new Date().toISOString().replace(/[:.]/g, "-").slice(0, 19);
136+
const timestamp = new Date()
137+
.toISOString()
138+
.replace(/[:.]/g, "-")
139+
.slice(0, 19);
137140
const defaultName = `twig-logs-${timestamp}.log`;
138141
const { filePath, canceled } = await dialog.showSaveDialog({
139142
title: "Export Logs",

0 commit comments

Comments
 (0)