UI: Fix issue where drawing a circle didn't work in map widgets

This commit is contained in:
Vladyslav_Prykhodko 2025-01-15 13:04:02 +02:00
parent e9036f8aa8
commit 0f3f9e4653

View File

@ -357,7 +357,7 @@ export default abstract class LeafletMap {
this.map.pm.Toolbar.copyDrawControl('Circle', { this.map.pm.Toolbar.copyDrawControl('Circle', {
name: 'tbCircle', name: 'tbCircle',
afterClick: () => this.selectEntityWithoutLocation('tbCircle'), afterClick: () => this.selectEntityWithoutLocation('tbCircle'),
disabled: true, disabled: false,
actions actions
}); });
} }