-
Notifications
You must be signed in to change notification settings - Fork 16
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
Post launch feedback updates #2511
Conversation
PR deployed in Google Cloud |
PR deployed in Google Cloud |
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.
60c8313
to
4da76fe
Compare
20abc98
to
226fd0a
Compare
- Fix chart to calculate domain instead of rounding - remove junior from tooltip tranche if only one tranche - fix borders - adjust pool list to use grid system (easier to maintain than flex) - remove underline from tooltip for ratings
226fd0a
to
d17153c
Compare
1906e99
to
97ab29e
Compare
6a15c8d
to
f5868e5
Compare
55d968c
to
98ee336
Compare
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.
Reviewed all the UI fixes after the feedback I left in the ticket and everything looks perfect to me, great work!
b159ea7
to
dd5db7e
Compare
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.
Just a few type things but looks really good otherwise!
<Text style={{ marginLeft: 4 }}>{rating.value}</Text> | ||
</Box> | ||
</Tooltip> | ||
{metadata?.pool?.poolRatings.map((rating: RatingType) => ( |
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.
{metadata?.pool?.poolRatings.map((rating: RatingType) => ( | |
{metadata?.pool?.poolRatings.map((rating) => ( |
shouldn't be necessary, think you can delete the type completely
export type RatingType = { | ||
agency?: string | ||
reportUrl?: string | ||
reportFile?: any | ||
value?: string | ||
} |
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.
would extend this type from the metadata instead of creating a new type
62a02ac
to
87417c8
Compare
#2505