-
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
Only show marquee for selected item #7180
Conversation
Current Playwright Test Results Summary✅ 159 Passing - Run may still be in progress, this comment will be updated as current testing workflow or job completes... (Last updated on 11/16/2023 06:03:28pm UTC)
|
Test Case | Last 7 days Failures | Last 7 days Flakes |
---|---|---|
Time List Create a Time List, add a single Plan to it and verify all the activities are displayed with no milliseconds
Retry 1 • Initial Attempt |
1.19% (1)1 / 84 runfailed over last 7 days |
54.76% (46)46 / 84 runsflaked over last 7 days |
📄 functional/plugins/notebook/notebookSnapshots.e2e.spec.js • 1 Flake
Test Case Results
Test Case | Last 7 days Failures | Last 7 days Flakes |
---|---|---|
Snapshot image tests Can drop an image onto a notebook and create a new entry
Retry 1 • Initial Attempt |
0% (0)0 / 52 runsfailed over last 7 days |
73.08% (38)38 / 52 runsflaked over last 7 days |
Current Playwright Test Results Summary
✅ 14 Passing -
Run may still be in progress, this comment will be updated as current testing workflow or job completes...
(Last updated on 11/16/2023 06:03:28pm UTC)
Run Details
Running Workflow e2e-couchdb on Github Actions
Commit: 5bbf4a6
Started: 11/16/2023 05:57:16pm UTC
⚠️ Flakes
📄 functional/couchdb.e2e.spec.js • 1 Flake
Test Case Results
Test Case | Last 7 days Failures | Last 7 days Flakes |
---|---|---|
CouchDB Status Indicator with mocked responses @couchdb Shows red if not connected
Retry 1 • Initial Attempt |
0% (0)0 / 30 runsfailed over last 7 days |
20% (6)6 / 30 runsflaked over last 7 days |
Was scratching my head on this one for a bit. Was unsure why this regressed when the code didn't change much. It looks like regardless of @charlesh88 , do you want to look at the css, or this JS fix should work to fix. |
Seeing a new problem: the selection marquee is now hidden after the first manipulation of an object, via the cursor or numeric input position and size inputs in the toolbar. The object remains selected and it can be manipulated (moved with drag and changed via toolbar inputs), but the marquee isn't displayed. Another object can't be selected unless the first is deselected, or by clicking a new object twice. This is the case for all elements with 4 control handles: drawing objects, alphanumerics, nested layouts - everything but the line drawing object. Display.Layout.7179.selection.marquee.lost.after.manipulation.mp4 |
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.
Sync with me on how to write a test for this
Weird but I see it too. Will look into it. What do you think about the css? Worth fixing? |
e2e or visual? I should be good on e2e. I should put this into draft until we decide what the proper fix is. |
I will take a further look. |
probably a visual i'd think |
This reverts commit d17af21.
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #7180 +/- ##
==========================================
- Coverage 55.96% 55.89% -0.07%
==========================================
Files 653 653
Lines 26213 26213
Branches 2525 2525
==========================================
- Hits 14669 14653 -16
- Misses 10839 10853 +14
- Partials 705 707 +2
*This pull request uses carry forward flags. Click here to find out more.
... and 8 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
How'd I do? |
@charlesh88 , somewhere I think grids also regressed. Please verify if grids are as expected. |
}); | ||
}); | ||
|
||
async function setupBaseline(page, theme, openmctConfig) { |
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.
Let's add some JSDocs here with valid types
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.
Nice work!
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.
I'm not seeing the test results. Let's sync first thing tomorrow
name: 'Main Tree' | ||
}); | ||
|
||
const objectViewLocator = page.locator('.c-object-view'); |
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.
generally, the practice would be to improve the locator such that we don't reference this by classname
Closes #7179
Describe your changes:
Added check to see if selection is in the currently selected layout
All Submissions:
Author Checklist
Reviewer Checklist