Skip to content

Commit

Permalink
Merge pull request #245 from alan-wu/default-human
Browse files Browse the repository at this point in the history
Change default species to human male.
  • Loading branch information
alan-wu authored Sep 19, 2024
2 parents 591168b + fae91fe commit 03860cf
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 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
Expand Up @@ -50,7 +50,7 @@
"*.js"
],
"dependencies": {
"@abi-software/flatmapvuer": "^1.4.4",
"@abi-software/flatmapvuer": "^1.5.1",
"@abi-software/map-side-bar": "^2.4.1",
"@abi-software/map-utilities": "^1.1.0",
"@abi-software/plotvuer": "1.0.0",
Expand Down
4 changes: 2 additions & 2 deletions src/components/scripts/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const initialDefaultState = () => {
return {
entries: [
{
resource: "Rat",
resource: "Human Male",
type: "MultiFlatmap",
mode: "main",
id: 1,
Expand All @@ -18,7 +18,7 @@ const getNewMapEntry = async (type, sparcApi) => {
let entry = { };
if (type === "AC") {
entry = {
resource: "Rat",
resource: "Human Male",
type: "MultiFlatmap",
mode: "main",
state: undefined,
Expand Down
2 changes: 1 addition & 1 deletion src/components/viewers/MultiFlatmap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default {
availableSpecies: availableSpecies(),
scaffoldResource: { },
showStarInLegend: false,
openMapOptions: getOpenMapOptions("Rat"),
openMapOptions: getOpenMapOptions("Human Male"),
}
},
methods: {
Expand Down
2 changes: 1 addition & 1 deletion src/mixins/ContentMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ export default {
data: function () {
return {
apiLocation: undefined,
activeSpecies: "Rat",
activeSpecies: "Human Male",
scaffoldCamera: undefined,
mainStyle: {
height: this.entry.datasetTitle ? "calc(100% - 30px)" : "100%",
Expand Down

0 comments on commit 03860cf

Please sign in to comment.