-
Notifications
You must be signed in to change notification settings - Fork 1
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
[Unités] Fixe plusieurs bugs concernant l'affichage des bases sur la carte #970
Conversation
67d6240
to
35a137a
Compare
…control unit list dialog
b4cf739
to
4636bc1
Compare
<NameText>{controlUnit.name}</NameText> | ||
<AdministrationText>{controlUnit.administration.name}</AdministrationText> | ||
<NameText title={controlUnit.administration.name}>{controlUnit.name}</NameText> | ||
<AdministrationText title={controlUnit.administration.name}>{controlUnit.administration.name}</AdministrationText> |
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.
pourquoi passer une prop title
alors que tu ne t'en sers pas? (NameText
et AdministrationText
)
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.
Si le nom est trop long, il est tronqué via les ellipsis. Le title permet d'afficher le titre en passant la souris dessus.
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.
ah mais oui! pardon
@@ -73,7 +73,7 @@ export function ReportingCard({ | |||
|
|||
const closeReportingCard = useCallback(() => { | |||
dispatch(reportingActions.setSelectedReportingIdOnMap(undefined)) | |||
dispatch(removeOverlayCoordinatesByName(Layers.REPORTING_SELECTED.code)) | |||
dispatch(removeOverlayCoordinatesByName(Layers.REPORTINGS.code)) |
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.
merci :-)
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.
^^
Related Pull Requests & Issues