Skip to content

Commit

Permalink
Release commit created with Cranko.
Browse files Browse the repository at this point in the history
+++ cranko-release-info-v1
[[projects]]
qnames = ["@wwtelescope/research-app-messages", "npm"]
version = "0.17.0"
age = 6

[[projects]]
qnames = ["@wwtelescope/engine-types", "npm"]
version = "0.6.4"
age = 14

[[projects]]
qnames = ["@wwtelescope/engine", "npm"]
version = "7.26.0"
age = 1

[[projects]]
qnames = ["@wwtelescope/embed-common", "npm"]
version = "0.3.3"
age = 15

[[projects]]
qnames = ["@wwtelescope/embed-creator", "npm"]
version = "0.4.2"
age = 3

[[projects]]
qnames = ["@wwtelescope/astro", "npm"]
version = "0.2.2"
age = 16

[[projects]]
qnames = ["@wwtelescope/engine-helpers", "npm"]
version = "0.14.0"
age = 3

[[projects]]
qnames = ["@wwtelescope/engine-pinia", "npm"]
version = "0.6.0"
age = 3

[[projects]]
qnames = ["@wwtelescope/research-app", "npm"]
version = "0.14.3"
age = 0

[[projects]]
qnames = ["@wwtelescope/embed", "npm"]
version = "1.6.2"
age = 3

+++
  • Loading branch information
cranko committed May 30, 2023
2 parents 5c9a115 + 573de39 commit 2528b54
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions research-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# @wwtelescope/research-app 0.14.3 (2023-05-30)

- Make sure not to send proxy objects when sending lists of selected
sources over the messaging API (#251, @Carifio24).


# @wwtelescope/research-app 0.14.2 (2023-05-25)

- Load the HiPS catalog over HTTPS if the app itself is loaded over HTTPS,
Expand Down
2 changes: 1 addition & 1 deletion research-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@
"lint": "vue-cli-service lint src",
"serve": "vue-cli-service serve"
},
"version": "0.14.2"
"version": "0.14.3"
}
6 changes: 3 additions & 3 deletions research-app/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2525,8 +2525,9 @@ const App = defineComponent({
layer = sourceLayer;
}
const rawSource = isProxy(source) ? toRaw(source) : source;
return {
...source,
...rawSource,
catalogLayer: layer,
};
},
Expand Down Expand Up @@ -3050,11 +3051,10 @@ const App = defineComponent({
if (this.$options.statusMessageDestination === null || this.allowedOrigin === null)
return;
const rawSource = isProxy(source) ? toRaw(source) : source;
const msg: selections.SelectionStateMessage = {
type: "wwt_selection_state",
sessionId: this.statusMessageSessionId,
mostRecentSource: this.prepareForMessaging(rawSource),
mostRecentSource: this.prepareForMessaging(source),
};
this.$options.statusMessageDestination.postMessage(msg, this.allowedOrigin);
Expand Down

0 comments on commit 2528b54

Please sign in to comment.