-
Notifications
You must be signed in to change notification settings - Fork 370
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
upcoming: [M3-9355] - Fix LKE-E provisioning placeholder when filtering by status #11745
base: develop
Are you sure you want to change the base?
upcoming: [M3-9355] - Fix LKE-E provisioning placeholder when filtering by status #11745
Conversation
β¦de pool status for a newly created cluster
</TableRow> | ||
)} | ||
{(count > 0 || | ||
{rowData.length === 0 && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to check the length of the original data, not the filtered data bc the filtered data could be zero and this will incorrectly show
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense - thanks for the fix!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good now! Glad we caught this one; it was a bit of a hidden issue. π’
Screen.Recording.2025-02-27.at.8.29.13.AM.mov
</TableRow> | ||
)} | ||
{(count > 0 || | ||
{rowData.length === 0 && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense - thanks for the fix!
@hana-akamai Just merged the copy PR, which is going to create a small merge conflict with that placeholder text. |
Coverage Report: β |
Cloud Manager UI test resultsπ 530 passing tests on test run #3 βοΈ
|
Description π
Fix provisioning placeholder incorrectly displaying when filtering a newly created Cluster by Running/Offline status
Target release date ποΈ
3/11
Preview π·
before.mp4
after.mov
How to test π§ͺ
Prerequisites
(How to setup test environment)
Reproduction steps
You can test via e2e or create an actual LKE-E cluster and wait ~5mins for it to start provisioning
NodeTable.tsx
replacerowData.length
back withcount
on lines 192 & 218yarn cy:debug
and run thelke-update.spec.ts
testfilters the node tables based on selected status filter
test should failVerification steps
(How to verify changes)
lke-update.spec.ts
testfilters the node tables based on selected status filter
should passAuthor Checklists
As an Author, to speed up the review process, I considered π€
π Doing a self review
β Our contribution guidelines
π€ Splitting feature into small PRs
β Adding a changeset
π§ͺ Providing/improving test coverage
π Removing all sensitive information from the code and PR description
π© Using a feature flag to protect the release
π£ Providing comprehensive reproduction steps
π Providing or updating our documentation
π Scheduling a pair reviewing session
π± Providing mobile support
βΏ Providing accessibility support
As an Author, before moving this PR from Draft to Open, I confirmed β