-
Notifications
You must be signed in to change notification settings - Fork 40
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
Restore dynamic update of mean adornment #1663
Conversation
… updating * This bug first appeared in build 1949, in October, 2024. Some update machinery in data-configuration-model.ts was removed around then so `GraphContentModel:updateAdornments` was no longer being called when case values are changed. The only thing that needed to be fixed was to increment the `DataConfigurationModel`'s `casesChangeCount` in `handleSetCaseValues`. Doing so restored the previous behavior with no apparent added cost.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1663 +/- ##
===========================================
- Coverage 85.78% 67.74% -18.04%
===========================================
Files 604 604
Lines 30737 30738 +1
Branches 8479 8488 +9
===========================================
- Hits 26367 20823 -5544
- Misses 4052 9307 +5255
- Partials 318 608 +290
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
codap-v3 Run #5431
Run Properties:
|
Project |
codap-v3
|
Branch Review |
main
|
Run status |
Passed #5431
|
Run duration | 05m 51s |
Commit |
918716f55a: Merge pull request #1663
|
Committer | William Finzer |
View all properties for this run ↗︎ |
Test results | |
---|---|
Failures |
0
|
Flaky |
1
|
Pending |
36
|
Skipped |
0
|
Passing |
220
|
View all changes introduced in this branch ↗︎ |
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.
👍 LGTM
[#188640918] Bug fix: When points in dot plot are dragged, mean isn't updating
GraphContentModel:updateAdornments
was no longer being called when case values are changed. The only thing that needed to be fixed was to increment theDataConfigurationModel
'scasesChangeCount
inhandleSetCaseValues
. Doing so restored the previous behavior with no apparent added cost.