-
Notifications
You must be signed in to change notification settings - Fork 43
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
✨ Add assessed archetypes section in drawer #1610
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #1610 +/- ##
==========================================
+ Coverage 39.13% 39.18% +0.05%
==========================================
Files 146 146
Lines 4850 4856 +6
Branches 1205 1209 +4
==========================================
+ Hits 1898 1903 +5
- Misses 2850 2851 +1
Partials 102 102
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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 view looks ok if the application does not have an archetype or if the archetype has a completed assessment or review. But if the archetype has assessments in progress, the view is broken
✔️ Archetype with assessment and review completed:
❌ Archetype but the assessment is not started of in-progress:
So just need to have the 3rd screen there show "None" or similar
Signed-off-by: ibolton336 <[email protected]>
Signed-off-by: ibolton336 <[email protected]>
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.
Behavior for application with an archetype but the archetype is missing an assessment or review is looking good now. The "None" shows as expected.
Signed-off-by: ibolton336 <[email protected]>
Signed-off-by: ibolton336 <[email protected]>
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'm not getting the inherited text where I saw the infotip icon before.
...ages/applications/components/application-assessment-status/application-assessment-status.tsx
Outdated
Show resolved
Hide resolved
...ages/applications/components/application-assessment-status/application-assessment-status.tsx
Outdated
Show resolved
Hide resolved
...ages/applications/components/application-assessment-status/application-assessment-status.tsx
Outdated
Show resolved
Hide resolved
Address singular translation issue Signed-off-by: ibolton336 <[email protected]>
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.
Everything is looking good, just a question on the review column.
const { t } = useTranslation(); | ||
|
||
const { archetypes, isFetching } = useFetchArchetypes(); | ||
const isAppReviewed = !!application.review; |
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.
Is the review one for the application or does it include the archetype review? This column may have the same issue as the assessment column...
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 review only includes the app level review. There is no review bool, this is just the actual review object on the application.
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.
LGTM
Resolves:
https://issues.redhat.com/browse/MTA-1834
MTA-1878
Inconsistent hover text message for Assessment and Review columns