Skip to content

Commit

Permalink
Merge pull request #261 from opendatasoft/bugfix/geo-cell-delay
Browse files Browse the repository at this point in the history
fix(Table): Delay map initialization to the tooltip creation
  • Loading branch information
richterb authored Oct 25, 2024
2 parents 21362cf + 0cc5604 commit d145c65
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
delay: [500, 0],
duration: [275, 0],
maxWidth: 'none',
onTrigger: () => {
onShow: () => {
showMap = true;
},
onUntrigger: () => {
onHide: () => {
showMap = false;
},
}}
Expand Down

1 comment on commit d145c65

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage for this commit

94.67%

Coverage Report
FileStmtsBranchesFuncsLinesUncovered Lines
src
   index.ts100%100%100%100%
src/client
   constants.ts100%100%100%100%
   error.ts100%100%100%100%
   index.ts84.14%74.03%100%95.31%102–103, 124, 13, 146, 148, 148–149, 15, 15, 151, 162, 169, 169, 17, 17, 171, 176, 179, 182, 184, 52, 82
   types.ts100%100%100%100%
src/odsql
   clauses.ts82.61%71.43%80%90.91%14, 32, 42
   index.ts92.05%83.72%95.74%94.19%111, 146, 25, 28, 56–57, 57, 57–58, 68, 78–79

Please sign in to comment.