Skip to content

Commit

Permalink
fix: change species active to boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
luacmartins committed Feb 26, 2021
1 parent de14c2d commit f4dc1ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/treeTrackerApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export default {
body: JSON.stringify({
name: payload.name,
desc: payload.desc,
active: 0,
active: true,
valueFactor: 0,
}),
})
Expand All @@ -217,7 +217,7 @@ export default {
id: id,
name: name,
desc: desc,
active: 0,
active: true,
valueFactor: 0,
}),
})
Expand Down Expand Up @@ -252,7 +252,7 @@ export default {
species: {
name,
desc,
active: 0,
active: true,
valueFactor: 0,
},
}),
Expand Down

0 comments on commit f4dc1ad

Please sign in to comment.