Skip to content

Commit

Permalink
Astro 4.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
simon04 committed Dec 24, 2023
1 parent d3846c0 commit 9d6a0b5
Show file tree
Hide file tree
Showing 4 changed files with 531 additions and 724 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^2.0.0-beta.0",
"@astrojs/vue": "^4.0.0-beta.0",
"@astrojs/mdx": "^2.0.2",
"@astrojs/vue": "^4.0.5",
"@popperjs/core": "^2.11.8",
"@vue/reactivity": "^3.3.9",
"@vueuse/core": "^10.6.1",
"@vueuse/math": "^10.6.1",
"astro": "^4.0.0-beta.4",
"@vue/reactivity": "^3.3.13",
"@vueuse/core": "^10.7.0",
"@vueuse/math": "^10.7.0",
"astro": "^4.0.7",
"bootstrap": "^5.3.2",
"uplot": "^1.6.27",
"vue": "^3.3.9"
"vue": "^3.3.13"
},
"devDependencies": {
"prettier": "^3.0.0"
"prettier": "^3.1.1"
}
}
8 changes: 4 additions & 4 deletions src/components/Station.vue
Original file line number Diff line number Diff line change
Expand Up @@ -164,17 +164,17 @@ const stations = computed({
Array.isArray(params.station)
? params.station
: typeof params.station === "string"
? [params.station]
: [],
? [params.station]
: [],
set: (v) => (params.station = Array.isArray(v) ? v : [v]),
});
const parameters = computed({
get: () =>
Array.isArray(params.parameter)
? params.parameter
: typeof params.parameter === "string"
? [params.parameter]
: [],
? [params.parameter]
: [],
set: (v) => (params.parameter = Array.isArray(v) ? v : [v]),
});
Expand Down
4 changes: 2 additions & 2 deletions src/components/Stations.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ const stations = computed(() =>
(typeof v1 === "string" && typeof v2 === "string"
? v1.localeCompare(v2)
: typeof v1 === "number" && typeof v2 === "number"
? v1 - v2
: 0)
? v1 - v2
: 0)
);
}),
);
Expand Down
Loading

0 comments on commit 9d6a0b5

Please sign in to comment.