Skip to content

Commit

Permalink
address comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dliu27 committed Nov 21, 2024
1 parent 91b0ac4 commit 61641db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ export async function handleLaunchMultipleResult(
if (options.behavior === 'open') {
openInSameTab();
}
document.dispatchEvent(new CustomEvent('run-launched'));
} else if (individualResult.__typename === 'PythonError') {
failedRunsErrors.push({message: individualResult.message});
} else {
Expand All @@ -181,6 +180,7 @@ export async function handleLaunchMultipleResult(
}
}
}
document.dispatchEvent(new CustomEvent('run-launched'));

// link to runs page filtered to run IDs
const params = new URLSearchParams();
Expand Down

0 comments on commit 61641db

Please sign in to comment.