Skip to content

Commit

Permalink
Stabilization fix
Browse files Browse the repository at this point in the history
  • Loading branch information
emilhe committed Aug 27, 2023
1 parent 74c7ee8 commit 9198e2c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [1.0.6] - 2023-08-27
## [1.0.7] - 2023-08-27

### Changed

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-leaflet",
"version": "1.0.6",
"version": "1.0.7",
"description": "Dash Leaflet is a light wrapper around React-Leaflet. The syntax is similar to other Dash components, with naming conventions following the React-Leaflet API.",
"main": "index.ts",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/ts/react-leaflet/EditControl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const manipulateToolbar = (toolbar, mode, action) => {
const match = matches[0]
setTimeout(()=> {
match.button.click() // emulate button click
}, 1) // delay is necessary for some actions to work
}, 10) // delay is necessary for some actions to work
}
}
}
Expand Down

0 comments on commit 9198e2c

Please sign in to comment.