Skip to content

Commit

Permalink
#32 correction of the previous fix with date
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafnuss committed Aug 13, 2024
1 parent ca4781d commit adab008
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"url": "git+https://github.com/Zoziologie/biolovision2ebird.git"
},
"private": true,
"version": "2.3.4",
"version": "2.3.5",
"license": "GPL-3.0",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/Import.vue
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ export default {
return this.createSighting({
id: s["Universal observation ID"],
form_id: 0,
date: `${date_split[1]}-${date_split[2]}-${date_split[0]}`,
date: `${date_split[2]}-${date_split[0]}-${date_split[1]}`,
time: s.Timing,
lat: parseFloat(s["Latitude (N)"]),
lon: parseFloat(s["Longitude (E)"]),
Expand Down

0 comments on commit adab008

Please sign in to comment.