Skip to content

Commit

Permalink
#9711: Fix - WFS layer filter triggers infinite requests (#9745)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsuren1 authored Nov 27, 2023
1 parent 05003d0 commit a5c87ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/client/components/map/openlayers/plugins/WFSLayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const createLoader = (source, options) => (extent, resolution, projection) => {
source.addFeatures(
source.getFormat().readFeatures(response.data));
source.set('@wfsFeatureCollection', response.data);
options.onLoadEnd();
options.onLoadEnd && options.onLoadEnd();
} else {
onError();
}
Expand Down

0 comments on commit a5c87ed

Please sign in to comment.