Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.117.0 - staging → master #10377

Merged
merged 37 commits into from
Apr 15, 2024
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
98b5dbf
upcoming: [M3-7536] - Disable fetching buckets with clusters when Obj…
cpathipa Mar 29, 2024
fea0da3
fix: README.md Logo (#10332)
bnussman-akamai Mar 29, 2024
f08356f
change: [M3-7873] - Use Chip for notification badge (#10333)
hana-akamai Mar 29, 2024
e4672e7
upcoming: [M3-7898] - Support ticket severity (#10317)
hkhalil-akamai Mar 29, 2024
b662492
upcoming: [M3-7939] - Refactor for Auto-Token Refresh Prep (#10323)
jaalah-akamai Apr 1, 2024
1f3440f
fix: [M3-7864] - Make the ACL (Object storage) select field carat (^)…
cpathipa Apr 1, 2024
4791fe3
Merge branch 'master' into develop
hana-akamai Apr 1, 2024
0e0e5a5
upcoming: [M3-7944] - Linode Create Refactor - User Data - Part 7 (#1…
bnussman-akamai Apr 1, 2024
2a74280
refactor: [M3-7831] - Use `nodebalancers/types` endpoint for pricing …
mjac0bs Apr 2, 2024
dcc07b9
fix: [M3-7508] - Follow up on tests to check Parent and Child 'Close …
cliu-akamai Apr 2, 2024
e95ce8e
upcoming: [M3-7938] - Show custom error message in EditAccessKeyDrawe…
cpathipa Apr 2, 2024
9f4aa5f
build(deps): bump express from 4.18.2 to 4.19.2 (#10326)
dependabot[bot] Apr 2, 2024
9fc3bef
Tech Story: [M3-7947] - Update storybook to 8.0.5 (#10336)
abailly-akamai Apr 2, 2024
a6d8fa3
upcoming: [M3-7928] - Linode Create Refactor - Summary - Part 8 (#10334)
bnussman-akamai Apr 2, 2024
a520d9c
upcoming: [M3-7940] - Update and cleanup Placement Group assign/unass…
abailly-akamai Apr 2, 2024
4725a71
upcoming: [M3-7951] Update Placement Groups region API limits (#10343)
abailly-akamai Apr 3, 2024
fa7d1bb
fix: [M3-7953] - Reset SSH key form on cancel and close (#10344)
jdamore-linode Apr 3, 2024
0016832
change: [M3-7540] - Improve tags experience (#10122)
hkhalil-akamai Apr 3, 2024
c76351e
test: [M3-7496] - Add test for Proxy user -> Parent account token exp…
jdamore-linode Apr 3, 2024
6479b00
upcoming: [M3-7901] - Update navigation items for Placement Groups (#…
carrillo-erik Apr 4, 2024
774c060
upcoming: [M3-7926] - Linode Create Refactor - VLANs - Part 9 (#10342)
bnussman-akamai Apr 4, 2024
7b79662
test: [M3-7797] - Add Cypress tests for Account billing drawers (#10349)
cliu-akamai Apr 5, 2024
5a4e0ab
build(deps-dev): bump vite from 5.1.1 to 5.1.7 (#10347)
dependabot[bot] Apr 8, 2024
5a3c265
change : [M3-6471] - Add resource links to NodeBalancers empty state …
cpathipa Apr 8, 2024
40d53e3
Merge branch 'master' into develop
bnussman Apr 8, 2024
7044496
fix: [M3-7961] - Disable usePersonAccessTokensQuery in token revocati…
mjac0bs Apr 9, 2024
a55ca05
upcoming: [M3-7937] - Update Placement Groups detail and summaries (#…
abailly-akamai Apr 9, 2024
63cfa11
refactor: [M3-7960] - Update Notistack to `3.0.1` (#10357)
abailly-akamai Apr 9, 2024
9b32652
fix: [M3-7952] - Unable to update label of OBJ limited access key (#1…
cpathipa Apr 9, 2024
6524ebe
change: [M3-7847] - Add Akamai's Japanese QI System ID to Japanese In…
cpathipa Apr 10, 2024
fd83b3a
upcoming: [M3-7861]: Include powered-off data in clone analytics even…
hkhalil-akamai Apr 10, 2024
ffa008c
test: Skip hanging Parent/Child test (#10353)
jdamore-linode Apr 10, 2024
868bf00
change: [UIE-7563] - Delete tooltip displaying for current plan in Da…
mpolotsk-akamai Apr 10, 2024
9e93c24
Cloud version 1.117.0, API v4 version 0.114.0, and Validation version…
mjac0bs Apr 11, 2024
2934775
Add missing Validation changelog entry
mjac0bs Apr 11, 2024
3201d7e
Add missing changelog entry to Manager
mjac0bs Apr 11, 2024
a455707
Merge pull request #10368 from linode/release-v1.117.0
mjac0bs Apr 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: [M3-7953] - Reset SSH key form on cancel and close (#10344)
* Reset SSH key form on cancel and close

* Added changeset: Reset SSH key form state on cancel
  • Loading branch information
jdamore-linode authored Apr 3, 2024
commit fa7d1bb1bde0ca65ed9e151ebc0b3ce5d970fd64
5 changes: 5 additions & 0 deletions packages/manager/.changeset/pr-10344-fixed-1712089845550.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Fixed
---

Reset SSH key form state on cancel ([#10344](https://github.com/linode/manager/pull/10344))
Original file line number Diff line number Diff line change
@@ -34,11 +34,15 @@ export const CreateSSHKeyDrawer = React.memo(({ onClose, open }: Props) => {
async onSubmit(values) {
await createSSHKey(values);
enqueueSnackbar('Successfully created SSH key.', { variant: 'success' });
formik.resetForm();
onClose();
handleClose();
},
});

const handleClose = () => {
formik.resetForm();
onClose();
};

const hasErrorFor = getAPIErrorFor(
{
label: 'Label',
@@ -61,7 +65,7 @@ export const CreateSSHKeyDrawer = React.memo(({ onClose, open }: Props) => {
);

return (
<Drawer onClose={onClose} open={open} title="Add SSH Key">
<Drawer onClose={handleClose} open={open} title="Add SSH Key">
{generalError && <Notice text={generalError} variant="error" />}
<form onSubmit={formik.handleSubmit}>
<TextField
@@ -89,7 +93,7 @@ export const CreateSSHKeyDrawer = React.memo(({ onClose, open }: Props) => {
loading: isLoading,
type: 'submit',
}}
secondaryButtonProps={{ label: 'Cancel', onClick: onClose }}
secondaryButtonProps={{ label: 'Cancel', onClick: handleClose }}
/>
</form>
</Drawer>
Loading