-
Notifications
You must be signed in to change notification settings - Fork 72
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
#564 test result page changes #579
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
d5ae5ed
bottom of test result should be open when you first come to the test
cescoferraro 9d2355f
adds dev script to call port-forward & start concurrently
cescoferraro ff8b429
Show a chevron on the test result bar to indicate it can be opened & …
cescoferraro 1e13a8e
Show 'Timeline view' and 'Graph view' mouseover on the buttons for sw…
cescoferraro a4ccff1
Remove the #de22 label from span label
cescoferraro 396117d
Delete assertion & Edit assertion tooltips & change delete to a trash…
cescoferraro File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import {CloseCircleOutlined, EditOutlined} from '@ant-design/icons'; | ||
import {DeleteOutlined, EditOutlined} from '@ant-design/icons'; | ||
import {Tag, Typography} from 'antd'; | ||
import styled, {css} from 'styled-components'; | ||
|
||
|
@@ -13,7 +13,7 @@ export const Header = styled.div` | |
border-bottom: 1px solid rgba(3, 24, 73, 0.1); | ||
padding: 8px 14px; | ||
justify-content: space-between; | ||
border-radius: 2px 2px 0px 0px; | ||
border-radius: 2px 2px 0 0; | ||
`; | ||
|
||
export const Body = styled.div` | ||
|
@@ -30,7 +30,7 @@ export const SelectorListText = styled(Typography.Text).attrs({ | |
`; | ||
|
||
export const SpanCountText = styled(Typography.Text)` | ||
font-size: 12; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. lol good catch |
||
font-size: 12px; | ||
`; | ||
const baseIcon = css` | ||
font-size: 18px; | ||
|
@@ -42,8 +42,8 @@ export const EditIcon = styled(EditOutlined)` | |
${baseIcon} | ||
`; | ||
|
||
export const DeleteIcon = styled(CloseCircleOutlined)` | ||
${baseIcon} | ||
export const DeleteIcon = styled(DeleteOutlined)` | ||
${baseIcon}; | ||
margin-left: 12px; | ||
`; | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
great!