Skip to content

Commit

Permalink
Fix buffer in AreaSpatialInputAction
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasstein committed Feb 6, 2024
1 parent b8e4ca3 commit f9b4fa1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default class AreaSelectSpatialInputAction {
if (!featureGeometry) {
resolve(null);
}
this.#geometry = buffer(featureGeometry, model.buffer, model.unit);
featureGeometry = this.#geometry = buffer(featureGeometry, model.buffer, model.unit);
if (args.queryBuilderSelection) {
this.closeWidget();
} else {
Expand Down

0 comments on commit f9b4fa1

Please sign in to comment.