Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
nsthorat committed Feb 2, 2024
1 parent 0854f14 commit 7da6d28
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
const formats: ExportOptions['format'][] = ['json', 'csv', 'parquet'];
let selectedFormat: ExportOptions['format'] = 'json';
let filepath = '';
let jsonl = false;
let jsonl = true;
const dispatch = createEventDispatcher();
const exportDataset = exportDatasetMutation();
Expand Down Expand Up @@ -258,7 +258,7 @@
/>
</div>
{#if selectedFormat === 'json'}
<div class="mt-4 border-t border-gray-300 pt-2">
<div class="mt-4 pt-2">
<Toggle bind:toggled={jsonl} labelText="JSONL" />
</div>
{/if}
Expand Down

0 comments on commit 7da6d28

Please sign in to comment.