Skip to content

Commit

Permalink
tweak: Make default configuration for exporing TSV without quotes (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
kohii committed Mar 10, 2024
1 parent 3a31127 commit 674f947
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/features/exports/export-data-modal.tsx
Expand Up @@ -26,9 +26,9 @@ export function ExportDataModal({
onClose,
}: ExportDataModalProps) {
const [exportOptions, setExportOptions] = useState<ExportOptions>({
delimiter: ",",
delimiter: "\t",
includeHeader: true,
quoteWhen: "always",
quoteWhen: "auto",
rowDelimiter: "\n",
});
const [selectedFieldIndices, setSelectedFieldIndices] = useState<Set<number>>(() => new Set(displayFields.map((_, i) => i)));
Expand Down

0 comments on commit 674f947

Please sign in to comment.