Skip to content

Commit

Permalink
add launch all button
Browse files Browse the repository at this point in the history
  • Loading branch information
dliu27 committed Nov 12, 2024
1 parent d119e8f commit b3de9f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,12 @@ const EvaluateSchedule = ({repoAddress, name, onClose, jobName}: Props) => {
</>
);
} else {
return <Button onClick={onClose}>Close</Button>;
return (
<>
<Button intent="primary">Launch all</Button>
<Button onClick={onClose}>Close</Button>
</>
);
}
}, [onClose, shouldEvaluate]);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ const SensorDryRun = ({repoAddress, name, currentCursor, onClose, jobName}: Prop
if (sensorExecutionData || error) {
return (
<Box flex={{direction: 'row', gap: 8}}>
<Button>Launch all</Button>
<Button
data-testid={testId('test-again')}
onClick={() => {
Expand Down

0 comments on commit b3de9f7

Please sign in to comment.