-
Notifications
You must be signed in to change notification settings - Fork 24
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
Psp-7862 collapse map side bar #4116
Conversation
devinleighsmith
commented
Jun 14, 2024
✅ No secrets were detected in the code. |
6714d41
to
f54d082
Compare
✅ No secrets were detected in the code. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## dev #4116 +/- ##
==========================================
+ Coverage 85.49% 86.87% +1.37%
==========================================
Files 1622 1129 -493
Lines 122851 104621 -18230
Branches 9483 8174 -1309
==========================================
- Hits 105029 90886 -14143
+ Misses 17513 13735 -3778
+ Partials 309 0 -309
Flags with carried forward coverage won't be shown. Click here to find out more.
|
✅ No secrets were detected in the code. |
2 similar comments
✅ No secrets were detected in the code. |
✅ No secrets were detected in the code. |
/** | ||
* PlusButton displaying a plus button, used to add new items. | ||
* @param param0 | ||
*/ |
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.
nit: wrong component name
@@ -79,7 +79,7 @@ const ResearchView: React.FunctionComponent<IResearchViewProps> = props => { | |||
return ( | |||
<MapSideBarLayout | |||
title={props.isEditing ? 'Update Research File' : 'Research File'} | |||
icon={<MdTopic title="User Profile" size="2.5rem" className="mr-2" />} | |||
icon={<MdTopic title="User Profile" size="2.5rem" />} |
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.
nit: all other icons are sized at 2.6 rem - would it make sense to adjust this one too?
@@ -199,7 +199,7 @@ export const AddResearchContainer: React.FunctionComponent<IAddResearchContainer | |||
{formikProps => ( | |||
<MapSideBarLayout | |||
title="Create Research File" | |||
icon={<MdTopic title="User Profile" size="2.5rem" className="mr-2" />} | |||
icon={<MdTopic title="User Profile" size="2.5rem" />} |
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.
nit: all other icons are sized at 2.6 rem - would it make sense to adjust this one too?
7fcafeb
to
b7cd214
Compare
✅ No secrets were detected in the code. |