Skip to content

Commit

Permalink
fix: [M3-7760] - Create SSH key drawer hidden by Rebuild Linode dialog (
Browse files Browse the repository at this point in the history
#10833)

* increase z-index of SSH drawer

* Added changeset: CreateSSHKeyDrawer being hidden by Rebuild Linode dialog

* add changeset - new commit to run e2e tests
  • Loading branch information
coliu-akamai committed Aug 27, 2024
1 parent 4d35ab7 commit 9514b2c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
5 changes: 5 additions & 0 deletions packages/manager/.changeset/pr-10833-fixed-1724689652747.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Fixed
---

CreateSSHKeyDrawer being hidden by Rebuild Linode dialog ([#10833](https://github.com/linode/manager/pull/10833))
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,13 @@ export const CreateSSHKeyDrawer = React.memo(({ onClose, open }: Props) => {
);

return (
<Drawer onClose={handleClose} open={open} title="Add SSH Key">
<Drawer
onClose={handleClose}
open={open}
// Adding zIndex value so that the SSH drawer is not hidden behind the Rebuild Linode dialog, which prevented users from adding an SSH key
sx={{ zIndex: 1300 }}
title="Add SSH Key"
>
{generalError && <Notice text={generalError} variant="error" />}
<form onSubmit={formik.handleSubmit}>
<TextField
Expand Down

0 comments on commit 9514b2c

Please sign in to comment.