-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Sort object key values in schema #5813
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
Conversation
Awaiting 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.
💃 LGTM!
I noticed one Object.keys
that survived unsorted is the svg marker.symbol
list:
plotly.js/src/components/drawing/index.js
Line 210 in 03917c6
Object.keys(SYMBOLDEFS).forEach(function(k) { |
That's good, because these symbols are in the order of their numeric codes, it would be weird to sort them alphabetically.
Addressing #5801 (comment)
@plotly/plotly_js