Skip to content

Commit

Permalink
marker edit fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanBirtch-aot committed Aug 19, 2024
1 parent dfb98c1 commit b47b3d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/src/components/Map/services/MapService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class MapService {
map.on(L.Draw.Event.DELETED, (e) => {
options.onDrawnItemsChange(drawnItems.getLayers());
});
map.on(L.Draw.Event.EDITED, (e) => {
map.on(L.Draw.Event.EDITSTOP, (e) => {
options.onDrawnItemsChange(drawnItems.getLayers());
});

Expand Down

0 comments on commit b47b3d8

Please sign in to comment.