-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
[Telemetry Table] Address issues found during testing Table Performance #7529
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #7529 +/- ##
==========================================
- Coverage 56.36% 56.02% -0.34%
==========================================
Files 672 672
Lines 27094 27108 +14
Branches 2624 2629 +5
==========================================
- Hits 15272 15188 -84
- Misses 11500 11598 +98
Partials 322 322
... and 10 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
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.
Needs e2e 🧪 or identify the existing e2e 🧪 that covers this
await page.goto(table.url); | ||
await setTimeConductorMode(page, false); | ||
const rows = page.getByRole('row'); | ||
await expect(rows).toHaveCount(50); |
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.
❤️
|
|
||
this.persistModeChange = persistModeChange; | ||
|
||
if (this.rowLimit !== rowLimit) { |
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.
@akhenry this was previously this.rowLimit === rowLimit
which was causing duplicate unsubscribes with the second unsubscribe failing because it was already removed in the realtime-provider.
@@ -1038,7 +1064,7 @@ export default { | |||
let row = allRows[i]; | |||
row.marked = true; | |||
|
|||
if (row !== baseRow) { | |||
if (row !== baseRow && this.markedRows.indexOf(row) === -1) { |
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 were getting dupes in markedRows which caused the count to be off
parent: table.uuid | ||
}); | ||
await page.goto(table.url); | ||
await setTimeConductorMode(page, false); |
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.
this is fine, but we should we try to avoid this appaction
…e callbacks after loading is finished
5d50b2c
to
5791c20
Compare
Closes #7268
Describe your changes:
Fix exporting from Limited Mode: #7268 (comment)
Fix UI issues: #7268 (comment)
Apply configuration changes made in Edit Properties.
All Submissions:
Author Checklist
type:
label? Note: this is not necessarily the same as the original issue.Reviewer Checklist