@openneuro/app 4.38.0-alpha.0 → 4.38.0-alpha.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openneuro/app",
3
- "version": "4.38.0-alpha.0",
3
+ "version": "4.38.0-alpha.1",
4
4
  "description": "React JS web frontend for the OpenNeuro platform.",
5
5
  "license": "MIT",
6
6
  "main": "public/client.js",
@@ -16,7 +16,7 @@
16
16
  "dependencies": {
17
17
  "@apollo/client": "3.13.8",
18
18
  "@artsy/fresnel": "^1.3.1",
19
- "@bids/validator": "npm:@jsr/bids__validator@^2.0.7",
19
+ "@bids/validator": "npm:@jsr/bids__validator@^2.0.8",
20
20
  "@emotion/react": "11.11.1",
21
21
  "@emotion/styled": "11.11.0",
22
22
  "@niivue/niivue": "0.57.0",
@@ -77,5 +77,5 @@
77
77
  "publishConfig": {
78
78
  "access": "public"
79
79
  },
80
- "gitHead": "96bbcd19e83fab719a0976be7747eeabc5036ff3"
80
+ "gitHead": "c7a1350704df419d17999699e056030b9aa0bd66"
81
81
  }
@@ -8,6 +8,7 @@ const datasetType_available = [
8
8
  ]
9
9
 
10
10
  const datasetStatus_available = [
11
+ { label: "All", value: "All" },
11
12
  { label: "Public", value: "Public" },
12
13
  { label: "Shared with Me", value: "Shared with Me" },
13
14
  { label: "Invalid", value: "Invalid" },
@@ -172,7 +173,7 @@ const initialSearchParams: SearchParams = {
172
173
  datasetType_available,
173
174
  datasetType_selected: "All Public",
174
175
  datasetStatus_available,
175
- datasetStatus_selected: null,
176
+ datasetStatus_selected: "All",
176
177
  modality_available,
177
178
  modality_selected: null,
178
179
  ageRange: [null, null],