diff --git a/frontend/src/Metamaps/PasteInput.js b/frontend/src/Metamaps/PasteInput.js index 13258857..e7029d66 100644 --- a/frontend/src/Metamaps/PasteInput.js +++ b/frontend/src/Metamaps/PasteInput.js @@ -63,7 +63,8 @@ const PasteInput = { Import.handleJSON(text) } else if (text.match(/\t/)) { Import.handleTSV(text) - } else if (text.match(/","/)) { + } else { + // just try to see if CSV works Import.handleCSV(text) } },