Skip to content

Commit

Permalink
v0.18.1: Fix bug calculating SWE legend URL
Browse files Browse the repository at this point in the history
  • Loading branch information
mfisher87 committed Mar 6, 2024
1 parent a436706 commit f4da298
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# v0.18.1 (2024-03-06)

* Fix bug calculating SWE legend URL.


# v0.18.0 (2024-03-06)

* Prevent sub-region collection selector options from line breaking.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"description": "Snow Today Webapp",
"name": "@nsidc/snow-today-webapp",
"version": "0.18.0",
"version": "0.18.1",
"private": false,
"files": [
"dist"
Expand Down
2 changes: 1 addition & 1 deletion src/constants/dataServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ export const sspVariablesIndexUrl = `${sspDataUrl}/variables.json`;
export const sspLegendsUrl = `${sspDataUrl}/legends`;

export const sweVariablesIndexUrl = `${sweDataUrl}/variables.json`;
export const sweLegendsUrl = `${sweDataUrl}/legends`;
export const sweLegendsUrl = `${sweDataUrl}/regions/legends`;
export const swePointsUrl = `${sweDataUrl}/points/swe.json`;

0 comments on commit f4da298

Please sign in to comment.