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": Tech Stories
---

Use older linodes landing page order preference key ([#12690](https://github.com/linode/manager/pull/12690))
5 changes: 5 additions & 0 deletions packages/manager/.changeset/pr-12690-tests-1755095013460.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Tests
---

Update `smoke-linode-landing-table.spec.ts` to account for removal of `/dashboard` ([#12690](https://github.com/linode/manager/pull/12690))
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ describe('linode landing checks', () => {
});

it('checks the landing page side menu items', () => {
cy.findByTitle('Akamai - Dashboard').should('be.visible');
cy.findByTitle('Akamai - Cloud Manager').should('be.visible');
cy.findByTestId('menu-item-Linodes').should('be.visible');
cy.findByTestId('menu-item-Volumes').should('be.visible');
cy.findByTestId('menu-item-NodeBalancers').should('be.visible');
Expand Down
2 changes: 1 addition & 1 deletion packages/manager/src/features/Linodes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export const LinodesLandingWrapper = React.memo(() => {
},
from: '/linodes',
},
preferenceKey: 'linodes_view_style',
preferenceKey: 'linodes-landing',
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The preference key should be linodes-landing based on what I see here:

'linodes-landing': { order: 'asc', orderBy: 'label' },

});

const handleRegionFilter = (regionFilter: RegionFilter) => {
Expand Down