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

ui: preserve backwards compatibility for managed-service #93619

Merged
merged 1 commit into from
Dec 14, 2022
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
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,11 @@ const mapDispatchToProps = (
export const RecentStatementDetailsPageConnected = withRouter(
connect(mapStateToProps, mapDispatchToProps)(RecentStatementDetails),
);

// Prior to 23.1, this component was called
// ActiveStatementDetailsPageConnected. We keep the alias here to avoid
// breaking the multi-version support in managed-service's console code.
// When managed-service drops support for 22.2 (around the end of 2024?),
// we can remove this code.
export const ActiveStatementDetailsPageConnected =
RecentStatementDetailsPageConnected;
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,11 @@ const mapDispatchToProps = (
export const RecentTransactionDetailsPageConnected = withRouter(
connect(mapStateToProps, mapDispatchToProps)(RecentTransactionDetails),
);

// Prior to 23.1, this component was called
// ActiveTransactionDetailsPageConnected. We keep the alias here to avoid
// breaking the multi-version support in managed-service's console code.
// When managed-service drops support for 22.2 (around the end of 2024?),
// we can remove this code.
export const ActiveTransactionDetailsPageConnected =
RecentTransactionDetailsPageConnected;