Skip to content

Commit

Permalink
Fix action button behavior
Browse files Browse the repository at this point in the history
Enable the button even if an action is in progress.
  • Loading branch information
jbeisen committed Aug 7, 2023
1 parent ea66bc2 commit a1739bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arroyo-console/src/routes/pipelines/PipelineDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ export function PipelineDetails({ client }: { client: ApiClient }) {
editPipelineButton = <Button onClick={onConfigModalOpen}>Edit</Button>;
actionButton = (
<Button
isDisabled={pipeline.action == null || pipeline.actionInProgress}
isDisabled={pipeline.action == null}
onClick={async () => {
await updateJobState(pipeline.action!);
}}
Expand Down

0 comments on commit a1739bd

Please sign in to comment.