Skip to content

Commit

Permalink
Made cell level project default to blank instead of "None"
Browse files Browse the repository at this point in the history
  • Loading branch information
kristenjh committed Sep 10, 2024
1 parent 2dc178b commit 54aedc2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
1 change: 0 additions & 1 deletion src/JEM-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@
"pilotName":{
"type":"string",
"title":"Slice/Cell Level Projects",
"default": "None",
"enum": ["None", "LAS Validation", "MOR Pilot", "retrograde_labeling", "ICV Injection", "Morphology", "Morphology Clearing", "Picrotoxin Validation", "1% Biocytin + Extended PBS Morphology Pilot", "1% Biocytin Pilot", "Extended PBS Morphology Pilot", "Training", "Neonatal mice", "Lot2022 Validation Pilot", "U01 Pilot", "Dravet Mouse Pilot", "PatchLink", "ACSF no blockers"],
"required":true
},
Expand Down
10 changes: 6 additions & 4 deletions src/JEM-wschema.html
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,6 @@
"pilotName": {
"type":"string",
"title":"Cell Level Projects",
"default": "None",
"enum": ["None","LAS Validation", "MOR Pilot", "retrograde_labeling", "ICV Injection", "Morphology", "Morphology Clearing", "Picrotoxin Validation", "1% Biocytin + Extended PBS Morphology Pilot", "1% Biocytin Pilot", "Extended PBS Morphology Pilot", "Training", "Neonatal mice", "Lot2022 Validation Pilot", "U01 Pilot", "Dravet Mouse Pilot", "PatchLink", "ACSF no blockers"],
"required":true
},
Expand Down Expand Up @@ -1223,9 +1222,12 @@
"fieldClass": "form-group col-lg-3",
"helper": [],
"sort": true,
"hideNone":true,
"noneLabel":"None",
"hidden":false,
"validate": true,
"showMessages": false,
"hideInitValidationError": true,
"hideNone": false,
"noneLabel": "",
"hidden": false,
"events": {
"change": function() {
// Echo Pilot Name
Expand Down
9 changes: 6 additions & 3 deletions src/JEM.html
Original file line number Diff line number Diff line change
Expand Up @@ -781,9 +781,12 @@
"fieldClass": "form-group col-lg-3",
"helper": [],
"sort": true,
"hideNone":true,
"noneLabel":"None",
"hidden":false,
"validate": true,
"showMessages": false,
"hideInitValidationError": true,
"hideNone": false,
"noneLabel": "",
"hidden": false,
"events": {
"change": function() {
// Echo Pilot Name
Expand Down

0 comments on commit 54aedc2

Please sign in to comment.