Skip to content

Commit

Permalink
Just call it Open CSV
Browse files Browse the repository at this point in the history
Regular users don't care about the difference between CSV and TSV, refs #29
  • Loading branch information
simonw committed Sep 2, 2021
1 parent 38f554f commit e10919a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class DatasetteServer {
await execFile(pip_path, [
"install",
"datasette==0.59a2",
"datasette-app-support>=0.1.2",
"datasette-app-support>=0.2",
]);
await new Promise((resolve) => setTimeout(resolve, 500));
return datasette_binary;
Expand Down Expand Up @@ -238,7 +238,7 @@ function createWindow() {
},
},
{
label: "Open CSV/TSV…",
label: "Open CSV…",
accelerator: "CommandOrControl+C",
click: async () => {
let selectedFiles = dialog.showOpenDialogSync({
Expand Down

0 comments on commit e10919a

Please sign in to comment.