@trailstash/ultra 3.5.0 → 3.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/ultra-map.js +1 -1
- package/package.json +1 -1
package/components/ultra-map.js
CHANGED
|
@@ -124,7 +124,7 @@ export class UltraMap extends HTMLElement {
|
|
|
124
124
|
this.#shadow.adoptedStyleSheets.push(css);
|
|
125
125
|
|
|
126
126
|
if (this.loadSettingsFromQueryParams) {
|
|
127
|
-
return Promise.resolve(getQueryFromQueryParams() ||
|
|
127
|
+
return Promise.resolve(getQueryFromQueryParams() || this.query).then(
|
|
128
128
|
async (query) => {
|
|
129
129
|
const querySettings = parseSettings(query);
|
|
130
130
|
const settings = {
|
package/package.json
CHANGED