Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ For upgrade instructions, please check the [migration guide](MIGRATIONS.released
### Fixed
- Improved efficiency of saving bounding box related changes. [#8492](https://github.com/scalableminds/webknossos/pull/8492)
- When deleting a dataset, its caches are cleared, so that if a new dataset by the same name is uploaded afterwards, only new data is loaded. [#8638](https://github.com/scalableminds/webknossos/pull/8638)
- Fixed a race condition when starting proofreading with a split action. [#8676](https://github.com/scalableminds/webknossos/pull/8676)
- Fixed that activating a mapping got stuck when a dataset was opened in "view" mode. [#8687](https://github.com/scalableminds/webknossos/pull/8687)

### Removed

Expand Down
6 changes: 4 additions & 2 deletions frontend/javascripts/viewer/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -370,8 +370,10 @@ export class WebKnossosModel {
}
}

Store.dispatch(ensureTracingsWereDiffedToSaveQueueAction(callback));
await deferred.promise();
if (tracingIds.size > 0) {
Store.dispatch(ensureTracingsWereDiffedToSaveQueueAction(callback));
await deferred.promise();
}
return true;
}

Expand Down