GSK-1303 - Feature/gsk 1271 test UI status message gets squeezed spacing uneven#1170
Merged
andreybavt merged 12 commits intomainfrom Jun 19, 2023
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
henchaves
reviewed
Jun 14, 2023
Comment on lines
+19
to
+24
| <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> |
Member
There was a problem hiding this comment.
I think we should add some spaces here.
Suggested change
| <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> |
Contributor
There was a problem hiding this comment.
I agree, either spaces or padding between spans should look nice
Member
Author
There was a problem hiding this comment.
Instead of space I removed the parent flex that was not required, the space are not needed anymore
andreybavt
suggested changes
Jun 15, 2023
Contributor
andreybavt
left a comment
There was a problem hiding this comment.
as Henrique mentioned let's add more spacing about spans
…-squeezed-spacing-uneven
…-squeezed-spacing-uneven
|
Kudos, SonarCloud Quality Gate passed! |
andreybavt
approved these changes
Jun 19, 2023
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.








Description
Type of Change