Skip to content

Commit

Permalink
fix #33
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafnuss committed Oct 9, 2024
1 parent 5c4d550 commit 6b61b52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Import.vue
Original file line number Diff line number Diff line change
Expand Up @@ -369,8 +369,8 @@ export default {
location_name: s.Site,
common_name: s.Species,
scientific_name: s["Latin name"],
count: s["Estimation"] == "seen not counted" ? "x" : s.Number,
count_precision: precision_match_observation[s["Estimation"]],
count: s["Estimation"] == "×" ? "x" : s.Number,
count_precision: s["Estimation"],
comment: s.Comment,
});
});
Expand Down

0 comments on commit 6b61b52

Please sign in to comment.