-
-
Notifications
You must be signed in to change notification settings - Fork 381
GSK-1303 - Feature/gsk 1271 test UI status message gets squeezed spacing uneven #1170
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
GSK-1303 - Feature/gsk 1271 test UI status message gets squeezed spacing uneven #1170
Conversation
GSK-1271 Test UI: status message gets squeezed, spacing uneven
Screenshot 2023-06-07 at 14.11.31.png
This affects also (and in particular) the "comparison" view because the layout is half width. |
…-squeezed-spacing-uneven
GSK-1303 UI issues with incorrect test suite comparison results display
Screenshot 2023-06-13 at 12.57.40.png Also non-clear drop-down list: |
…message-gets-squeezed-spacing-uneven' into feature/gsk-1271-test-ui-status-message-gets-squeezed-spacing-uneven
…-squeezed-spacing-uneven
| <span v-if='successRatio.failed > 0'>{{ plurialize('test', successRatio.failed) }} failed</span> | ||
| <span v-if='successRatio.failed > 0 && successRatio.passed > 0'>, </span> | ||
| <span v-if='successRatio.passed > 0'>{{ plurialize('test', successRatio.passed) }} passed</span> | ||
| <span v-if='successRatio.failed > 0 || successRatio.passed > 0'>. </span> | ||
| Executed | ||
| <span class='ml-2'>{{ timeSince(execution.executionDate) }}</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.
I think we should add some spaces here.
| <span v-if='successRatio.failed > 0'>{{ plurialize('test', successRatio.failed) }} failed</span> | |
| <span v-if='successRatio.failed > 0 && successRatio.passed > 0'>, </span> | |
| <span v-if='successRatio.passed > 0'>{{ plurialize('test', successRatio.passed) }} passed</span> | |
| <span v-if='successRatio.failed > 0 || successRatio.passed > 0'>. </span> | |
| Executed | |
| <span class='ml-2'>{{ timeSince(execution.executionDate) }}</span> | |
| <span v-if='successRatio.failed > 0'> {{ plurialize('test', successRatio.failed) }} failed</span> | |
| <span v-if='successRatio.failed > 0 && successRatio.passed > 0'>, </span> | |
| <span v-if='successRatio.passed > 0'> {{ plurialize('test', successRatio.passed) }} passed</span> | |
| <span v-if='successRatio.failed > 0 || successRatio.passed > 0'>. </span> | |
| Executed | |
| <span> {{ timeSince(execution.executionDate) }}</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.
I agree, either spaces or padding between spans should look nice
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.
Instead of space I removed the parent flex that was not required, the space are not needed anymore
andreybavt
left a comment
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.
as Henrique mentioned let's add more spacing about spans
…-squeezed-spacing-uneven
…-squeezed-spacing-uneven
|
Kudos, SonarCloud Quality Gate passed! |








Description
Type of Change