Skip to content

Commit

Permalink
fix(portal): fix mapping template is not showing correct upgrade stat…
Browse files Browse the repository at this point in the history
…us (#217)
  • Loading branch information
james-tran-3005 authored Nov 21, 2024
1 parent e22d645 commit 99f085d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit 99f085d

Please sign in to comment.