Skip to content

Commit

Permalink
Fix bug when theres no dataset format and we fail to cluster.
Browse files Browse the repository at this point in the history
  • Loading branch information
nsthorat committed Feb 22, 2024
1 parent 8e7418d commit 150adf8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web/blueprint/src/lib/components/ComputeClusterModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@
options.namespace,
options.datasetName,
{
input: selectedFormatSelector == null ? options.input : null,
input:
selectedFormatSelector == null || selectedFormatSelector == 'none' ? options.input : null,
use_garden: options.use_garden,
output_path: outputColumn,
input_selector: selectedFormatSelector,
Expand Down

0 comments on commit 150adf8

Please sign in to comment.