Skip to content

Commit

Permalink
fix: TensorBoard visualization from batch actions. (#9156)
Browse files Browse the repository at this point in the history
(cherry picked from commit 8b83122)
  • Loading branch information
thiagodallacqua-hpe authored and determined-ci committed Apr 12, 2024
1 parent 4bbc20d commit 2daa1fc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion webui/react/src/components/TableActionBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,10 @@ const TableActionBar: React.FC<Props> = ({
openExperimentTensorBoardModal();
} else {
openCommandResponse(
await openOrCreateTensorBoard({ ...params, workspaceId: project?.workspaceId }),
await openOrCreateTensorBoard({
experimentIds: params.experimentIds,
workspaceId: project?.workspaceId,
}),
);
}
return;
Expand Down

0 comments on commit 2daa1fc

Please sign in to comment.