Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 8 additions & 1 deletion packages/manager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.

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

## [2025-02-25] - v1.137.1

### Fixed:

- Unable to save non-US billing contact information without tax id ([#11725](https://github.com/linode/manager/pull/11725))


## [2025-02-25] - v1.137.0


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

### Changed:

- Introduce 2025 CDS redesign ([#11465](https://github.com/linode/manager/pull/11465))
- Introduce 2025 CDS redesign ([#11465](https://github.com/linode/manager/pull/11465))
- Improve Syntax Highlighting ([#11611](https://github.com/linode/manager/pull/11611))
- Clarify OAuth setup instructions in Getting Started README ([#11622](https://github.com/linode/manager/pull/11622))
- Replace `Box` elements with `<StyledLinkButton>` for better accessibility and add `aria-label`s in the KubeConfigDisplay ([#11648](https://github.com/linode/manager/pull/11648))
Expand Down
2 changes: 1 addition & 1 deletion packages/manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "linode-manager",
"author": "Linode",
"description": "The Linode Manager website",
"version": "1.137.0",
"version": "1.137.1",
"private": true,
"type": "module",
"bugs": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -449,10 +449,7 @@ const UpdateContactInformationForm = ({ focusEmail, onClose }: Props) => {
<ActionsPanel
primaryButtonProps={{
'data-testid': 'save-contact-info',
disabled:
isReadOnly ||
(nonUSCountry &&
(!billingAgreementChecked || !formik.values.tax_id)),
disabled: isReadOnly || (nonUSCountry && !billingAgreementChecked),
label: 'Save Changes',
loading: isPending,
type: 'submit',
Expand Down
Loading