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
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Changed
---

Update Images empty state as part of Image Service Gen2 ([#10985](https://github.com/linode/manager/pull/10985))
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('Images empty landing page', () => {

// confirms helper text
cy.findByText(
'Store your own custom Linux images, enabling you to rapidly deploy Linode Compute Instances preconfigured with the software and settings you require.'
'Store custom Linux images to rapidly deploy compute instances preconfigured with what you need.'
).should('be.visible');

// checks that guides are visible
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ describe('Images Landing Table', () => {

await waitForElementToBeRemoved(getByTestId(loadingTestId));
expect(
getByText((text) => text.includes('Store your own custom Linux images'))
getByText((text) => text.includes('Store custom Linux images'))
).toBeInTheDocument();
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import type {

export const headers: ResourcesHeaders = {
description:
'Store your own custom Linux images, enabling you to rapidly deploy Linode Compute Instances preconfigured with the software and settings you require.',
'Store custom Linux images to rapidly deploy compute instances preconfigured with what you need.',
subtitle: '',
title: 'Images',
};
Expand Down