Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
ingalls committed Dec 9, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent f36d410 commit 464c0e1
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -12,6 +12,10 @@

### Pending Release

### v5.18.4 - 2024-12-09

- :bug: CoT property updates were being rendered but not updated in the underlying store

### v5.18.3 - 2024-12-09

- :bug: Return a 404 Response if CoT history endpoint returns nothing for a given UID
2 changes: 1 addition & 1 deletion api/web/src/stores/base/cot.ts
Original file line number Diff line number Diff line change
@@ -119,7 +119,7 @@ export default class COT {
Object.assign(this._properties, update.properties);
}

if (!this._properties.center) {
if (!this._properties.center || update.geometry) {
this._properties.center = pointOnFeature(this._geometry).geometry.coordinates;
}

0 comments on commit 464c0e1

Please sign in to comment.