Skip to content
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 element_geom(pen, brush, paper) #836

Merged
merged 15 commits into from
Aug 4, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix key order in plot spec.
  • Loading branch information
OLarionova-HORIS committed Aug 4, 2023
commit ba3800a27f3aa22b1a3fc3104fc8dfbe3a3b2c82
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fun dynamicObjectToMap(o: dynamic): MutableMap<String, Any> {
var handleAnyNullable: (o: dynamic) -> Any? = {}

val handleObject: (o: dynamic) -> MutableMap<String, Any> = { o: dynamic ->
val map = HashMap<String, Any>()
val map = LinkedHashMap<String, Any>()
val entries = js("Object.entries(o)")
for (entry in entries) {
val key = entry[0] as String
Expand Down