-
Notifications
You must be signed in to change notification settings - Fork 39
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
fix: handling of hidden/minimized tiles #1630
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1630 +/- ##
===========================================
+ Coverage 67.88% 85.65% +17.77%
===========================================
Files 600 600
Lines 30405 30413 +8
Branches 8351 8293 -58
===========================================
+ Hits 20639 26049 +5410
+ Misses 9611 4045 -5566
- Partials 155 319 +164
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 #5243
Run Properties:
|
Project |
codap-v3
|
Branch Review |
main
|
Run status |
Passed #5243
|
Run duration | 01m 52s |
Commit |
0a69e9bda6: Increment the build number
|
Committer | eireland |
View all properties for this run ↗︎ |
Test results | |
---|---|
Failures |
0
|
Flaky |
0
|
Pending |
0
|
Skipped |
0
|
Passing |
3
|
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.
Looks good to me 👍
[PT-188570070]
#1622 addressed the case of minimized tiles, but did not properly capture the relationship between hidden and minimized tiles. The document in the PT story has a case table that has been minimized and hidden. In v2, when such a tile is shown/unhidden it is also unminimized. In other words, when a hidden tile is shown, its prior minimized/unminimized state is ignored, which is equivalent to saying that a tile cannot be both hidden and minimized. Therefore, we implement this rule at the model level, so that we don't have to find all clients that show hidden tiles (Calculator button in tool shelf, close button of certain tiles, table menu items, etc.).