Skip to content

Commit

Permalink
fix: fix crash on creation when runner has no parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
csm-thu committed Mar 18, 2024
1 parent 362edeb commit 4f2ec25
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const useCreateDatasetWizard = () => {

const getParametersForRunner = useCallback(
(values) => {
if (values == null) return [];
const solutionParameters = solutionData.parameters;

return Object.entries(values).map(([key, value]) => {
Expand Down

0 comments on commit 4f2ec25

Please sign in to comment.