-
-
Notifications
You must be signed in to change notification settings - Fork 379
[GSK-1289] UI issue incorrect colour of correctly predicted labels #1231
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-1289] UI issue incorrect colour of correctly predicted labels #1231
Conversation
GSK-1289 UI issue. Incorrect colour of correctly predicted labels.
Pay attention on the "Prediction" zone. When samples changed from correctly predicted to incorrectly, colour is switched from green to red too early. |
…ssue-incorrect-colour-of-correctly-predicted-labels # Conflicts: # frontend/src/views/main/project/Inspector.vue
…f-correctly-predicted-labels
| const errorLoadingMetadata = ref("") | ||
| const dataErrorMsg = ref("") | ||
| const classificationResult = ref("") | ||
| const debouncingTimeout = ref(500); |
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.
This can be a constant since its immutable const debouncingTimeout = 500
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.
It's true, I forgot to convert it as a constant when migrating
…ssue-incorrect-colour-of-correctly-predicted-labels # Conflicts: # frontend/src/views/main/project/Inspector.vue
Co-authored-by: Kevin Messiaen <[email protected]>
|
Kudos, SonarCloud Quality Gate passed! |








Description
This PR aims to fix the UI on the Debugger tab when changing from one instance to another. The actual value was changing before modifying the colour. Now, all results will be forced to be rendered again.
Also, a few components were migrated to Composition API in this PR:
PredictionResults.vueInspector.vueResultPopover.vueRelated Issue
GSK-1289 (available on Linear)
Type of Change