-
Notifications
You must be signed in to change notification settings - Fork 6
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 Aircraft Tracker component implementation #447
Conversation
…zooming, show it name
…he ID of airplane near of the airplane draw in the map.
ea1178a
to
c688da8
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.
I've left several comments, please take a look to them @fdelcampo. Thanks!
const data = getFlightTracker(state); | ||
return { | ||
status: data.status, | ||
aircrafts: data.aircrafts, | ||
} |
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.
Suggestion: this could be:
const data = getFlightTracker(state);
return data;
And would yield the same result.
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.
Now try with return { ...data };
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 still suggest checking this comment: https://github.com/lsst-ts/LOVE-frontend/pull/447/files#r1164671409, although it is not urgent. I've also requested to change PR title name and also set your addition on the CHANGELOG to be the PR title @fdelcampo 🙏️
No description provided.