Skip to content

Commit

Permalink
Set canEscapeKeyClose to false on launchpad dialog (#25550)
Browse files Browse the repository at this point in the history
  • Loading branch information
salazarm authored Oct 25, 2024
1 parent 7977bee commit f751025
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export const LaunchAssetChoosePartitionsDialog = (
<Dialog
style={{width: 700}}
isOpen={props.open}
canEscapeKeyClose
canEscapeKeyClose={false}
canOutsideClickClose
onClose={() => props.setOpen(false)}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const AssetLaunchpad = ({
<Dialog
style={{height: '90vh', width: '80%'}}
isOpen={open}
canEscapeKeyClose={true}
canEscapeKeyClose={false}
canOutsideClickClose={true}
onClose={() => setOpen(false)}
>
Expand Down

1 comment on commit f751025

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for dagit-core-storybook ready!

✅ Preview
https://dagit-core-storybook-ljqc177bl-elementl.vercel.app

Built with commit f751025.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.