Skip to content

Commit

Permalink
Fixed an issue with undefined 'position' when batch editing results. …
Browse files Browse the repository at this point in the history
…Bumped version
  • Loading branch information
Mattk70 committed Aug 7, 2024
1 parent 59d62e0 commit 61818be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -2061,7 +2061,7 @@ const onInsertManualRecord = async ({ cname, start, end, comment, count, file, l
STATE.db === diskDB ? UI.postMessage({ event: 'diskDB-has-records' }) : UI.postMessage({event: 'unsaved-records'});
}
if (updateResults){
position.start = start;
if (position) position.start = start;
await getResults({species:speciesFiltered, position: position});
await getSummary({species: speciesFiltered});
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chirpity",
"version": "1.10.3",
"version": "1.10.4",
"description": "Chirpity Nocmig",
"main": "main.js",
"scripts": {
Expand Down

0 comments on commit 61818be

Please sign in to comment.