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

fix(portal): fix mapping template is not showing correct upgrade status #217

Merged
merged 1 commit into from
Nov 21, 2024
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 @@ -70,7 +70,7 @@ describe("Mapping template v2 component testing", () => {
"What’s new of each release"
);
expect(getByTestId("meta")).toHaveTextContent(
"Process to upgrade Kraken to new version"
"Process to upgrade Mapping template to new version"
);

// Guidance steps
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function UpgradeProcess({

return {
title: getUpgradeEnv(envName),
className: classNames(status === "process" && "upgrading"),
className: classNames(status === "IN_PROCESS" && "upgrading"),
description: (
<>
<p className={styles.stepInfo}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default function MappingTemplate() {
What’s new of each release
</Text.Custom>
<Text.LightMedium data-testid="meta" color="#E6F7FF" lineHeight="22px">
Process to upgrade Kraken to new version
Process to upgrade Mapping template to new version
</Text.LightMedium>
<Flex align="center" gap={8} wrap="wrap">
{steps.map((step, index) => (
Expand Down
Loading