-
Notifications
You must be signed in to change notification settings - Fork 4k
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
feat(html-report): Keep query when clicking project filter + ability to right-click #35400
base: main
Are you sure you want to change the base?
feat(html-report): Keep query when clicking project filter + ability to right-click #35400
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Test results for "tests 1"2 failed 4 flaky38933 passed, 805 skipped Merge workflow run. |
Failed tests seem flaky to me |
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.
The change looks good. Please try reverting the unrelated newline changes where possible.
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.
cc @dgozman for final review
This comment has been minimized.
This comment has been minimized.
Signed-off-by: Chris <57954026+cpAdm@users.noreply.github.com>
This comment has been minimized.
This comment has been minimized.
Test results for "tests 1"4 flaky38935 passed, 805 skipped Merge workflow run. |
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.
Thank you for the PR! There is one small caveat I'd like to resolve, but otherwise looks awesome.
projectNames: string[], | ||
projectName: string, | ||
}> = ({ projectNames, projectName }) => { | ||
const encoded = encodeURIComponent(projectName); | ||
const value = projectName === encoded ? projectName : `"${encoded.replace(/%22/g, '%5C%22')}"`; |
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 think this logic was here to support project names with spaces/quotes inside. Otherwise, tokenizing p:my project
will yield two tokens instead of a single one with "my project"
as a project name. I guess we should add a test as well.
header={<span> | ||
{file.fileName} | ||
</span>}> | ||
header={<span>{file.fileName}</span>} |
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.
Seems like unrelated formatting change?
Implements points:
Ctrl
+ click should also work with project labels (and not open new tab)Note: The full query now gets properly escaped, this does mean that the URL looks different. However, old URLs still work.
References: #35212