From f0e15d0c7dbd1ebc3dbcb10d4e7b3447064800be Mon Sep 17 00:00:00 2001 From: hitide-ui bot Date: Tue, 17 Sep 2024 20:20:27 +0000 Subject: [PATCH 1/3] /version 4.18.1-0 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0f4412bb..2502a388 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@gov.nasa.jpl.podaac/hitide-ui", - "version": "4.18.0-6", + "version": "4.18.1-0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@gov.nasa.jpl.podaac/hitide-ui", - "version": "4.18.0-6", + "version": "4.18.1-0", "devDependencies": { "eslint": "^5.16.0", "fs-extra": "^7.0.1", diff --git a/package.json b/package.json index 07cc036c..2f7ec2d3 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@gov.nasa.jpl.podaac/hitide-ui", "title": "HiTIDE", "description": "High Level Tool for Interactive Data Extraction", - "version": "4.18.0-6", + "version": "4.18.1-0", "scripts": { "build": "grunt --force; npm run copy", "copy": "node scripts/copy-files.js", From 02f8ea228321d20c6fc62f094be130e7c38e9645 Mon Sep 17 00:00:00 2001 From: Jimmy Date: Mon, 23 Sep 2024 16:03:04 -0700 Subject: [PATCH 2/3] Issue/hitide UI variables missing (#81) * issue/hitide-ui-variables-missing: added in removed variables function * issue/hitide-ui-variables-missing: deploy to sit --------- Co-authored-by: jbyrne --- CHANGELOG.md | 1 + src/jpl/dijit/DownloadsListing.js | 13 ++++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fcb1a20..7f3b0890 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed ### Fixed - Fixed adding matching granules feature +- Fixed missing extraction variables selection ## [4.17.2] diff --git a/src/jpl/dijit/DownloadsListing.js b/src/jpl/dijit/DownloadsListing.js index ec116cce..e504e174 100644 --- a/src/jpl/dijit/DownloadsListing.js +++ b/src/jpl/dijit/DownloadsListing.js @@ -69,6 +69,16 @@ define([ var variables = []; var all_variables = [] + for (var j = 0; j < message.variables.variables.length; ++j) { + var variable = message.variables.variables[j]; + // verify variable isn't a special case + if (message.variables.latVar != variable && + message.variables.lonVar != variable && + message.variables.timeVar != variable) { + all_variables.push(message.variables.variables[j]); + } + } + all_variables.sort(function (a, b) { return a.toLowerCase().localeCompare(b.toLowerCase()); }); @@ -86,7 +96,8 @@ define([ startDate: startDate, endDate: endDate, variables: variables, - defaultVars: [message.latVar, message.lonVar, message.timeVar], + // defaultVars: [message.latVar, message.lonVar, message.timeVar], + defaultVars: [message.variables.latVar, message.variables.lonVar, message.variables.timeVar], granuleNames: granuleNames, granuleIds: granuleIds, granuleNamesFilter: granuleNamesFilter, From 55b1934703e259d413e76ecaaf9acfd442eff7e5 Mon Sep 17 00:00:00 2001 From: hitide-ui bot Date: Mon, 23 Sep 2024 23:04:10 +0000 Subject: [PATCH 3/3] /version v4.18.1-1 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2502a388..bc06d46f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@gov.nasa.jpl.podaac/hitide-ui", - "version": "4.18.1-0", + "version": "4.18.1-1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@gov.nasa.jpl.podaac/hitide-ui", - "version": "4.18.1-0", + "version": "4.18.1-1", "devDependencies": { "eslint": "^5.16.0", "fs-extra": "^7.0.1", diff --git a/package.json b/package.json index 2f7ec2d3..56ae335d 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@gov.nasa.jpl.podaac/hitide-ui", "title": "HiTIDE", "description": "High Level Tool for Interactive Data Extraction", - "version": "4.18.1-0", + "version": "4.18.1-1", "scripts": { "build": "grunt --force; npm run copy", "copy": "node scripts/copy-files.js",