Skip to content

Commit b5db23f

Browse files
authored
Merge pull request #11729 from linode/staging
Release v1.137.1 - staging → master
2 parents 271627a + 47ee44a commit b5db23f

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

packages/manager/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [2025-02-25] - v1.137.1
8+
9+
### Fixed:
10+
11+
- Unable to save non-US billing contact information without tax id ([#11725](https://github.com/linode/manager/pull/11725))
12+
13+
714
## [2025-02-25] - v1.137.0
815

916

@@ -15,7 +22,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1522

1623
### Changed:
1724

18-
- Introduce 2025 CDS redesign ([#11465](https://github.com/linode/manager/pull/11465))
25+
- Introduce 2025 CDS redesign ([#11465](https://github.com/linode/manager/pull/11465))
1926
- Improve Syntax Highlighting ([#11611](https://github.com/linode/manager/pull/11611))
2027
- Clarify OAuth setup instructions in Getting Started README ([#11622](https://github.com/linode/manager/pull/11622))
2128
- Replace `Box` elements with `<StyledLinkButton>` for better accessibility and add `aria-label`s in the KubeConfigDisplay ([#11648](https://github.com/linode/manager/pull/11648))

packages/manager/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "linode-manager",
33
"author": "Linode",
44
"description": "The Linode Manager website",
5-
"version": "1.137.0",
5+
"version": "1.137.1",
66
"private": true,
77
"type": "module",
88
"bugs": {

packages/manager/src/features/Billing/BillingPanels/ContactInfoPanel/UpdateContactInformationForm/UpdateContactInformationForm.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -449,10 +449,7 @@ const UpdateContactInformationForm = ({ focusEmail, onClose }: Props) => {
449449
<ActionsPanel
450450
primaryButtonProps={{
451451
'data-testid': 'save-contact-info',
452-
disabled:
453-
isReadOnly ||
454-
(nonUSCountry &&
455-
(!billingAgreementChecked || !formik.values.tax_id)),
452+
disabled: isReadOnly || (nonUSCountry && !billingAgreementChecked),
456453
label: 'Save Changes',
457454
loading: isPending,
458455
type: 'submit',

0 commit comments

Comments
 (0)