Skip to content

Commit

Permalink
Merge pull request #3881 from bcgov/fix/3872
Browse files Browse the repository at this point in the history
fix(3872): update headers on products/requests pages
  • Loading branch information
junminahn authored Sep 27, 2024
2 parents 6d71b08 + 4e405cc commit b19bc33
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/app/private-cloud/products/all/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default privateCloudProducts(({ pathParams, queryParams, session }) => {
<>
<Table
title="Products in Private Cloud OpenShift Platform"
description="These are your products hosted on Private Cloud OpenShift platform"
description="These products are hosted on the Private Cloud OpenShift platform."
totalCount={totalCount}
page={snap.page ?? 1}
pageSize={snap.pageSize ?? 10}
Expand Down
4 changes: 2 additions & 2 deletions app/app/private-cloud/requests/all/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ export default privateCloudRequests(({ pathParams, queryParams, session }) => {

return (
<Table
title="Products in Private Cloud OpenShift Platform"
description="Products with pending requests currently under admin review."
title="Requests in Private Cloud OpenShift Platform"
description="These requests are currently under admin review."
totalCount={totalCount}
page={snap.page ?? 1}
pageSize={snap.pageSize ?? 10}
Expand Down
2 changes: 1 addition & 1 deletion app/app/public-cloud/products/all/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default publicCloudProducts(({ pathParams, queryParams, session }) => {
<>
<Table
title="Products in Public Cloud Landing Zones"
description="These are your products using the Public Cloud Landing Zones"
description="These products are hosted on the Public Cloud Landing Zones."
totalCount={totalCount}
page={snap.page ?? 1}
pageSize={snap.pageSize ?? 10}
Expand Down
4 changes: 2 additions & 2 deletions app/app/public-cloud/requests/all/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ export default publicCloudRequests(({ pathParams, queryParams, session }) => {

return (
<Table
title="Products in Public Cloud OpenShift Platform"
description="Products with pending requests currently under admin review."
title="Requests in Public Cloud Landing Zones"
description="These requests are currently under admin review."
totalCount={totalCount}
page={snap.page ?? 1}
pageSize={snap.pageSize ?? 10}
Expand Down

0 comments on commit b19bc33

Please sign in to comment.