From 0cc560427dcc2caaa2d33d423a06bb124f0f9d26 Mon Sep 17 00:00:00 2001 From: Benoit Richter Date: Thu, 24 Oct 2024 14:31:39 +0200 Subject: [PATCH] fix(Table): Delay map initialization to the tooltip creation --- .../src/components/Table/Cell/Format/GeoFormat.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/visualizations/src/components/Table/Cell/Format/GeoFormat.svelte b/packages/visualizations/src/components/Table/Cell/Format/GeoFormat.svelte index 54656059..978b1f13 100644 --- a/packages/visualizations/src/components/Table/Cell/Format/GeoFormat.svelte +++ b/packages/visualizations/src/components/Table/Cell/Format/GeoFormat.svelte @@ -29,10 +29,10 @@ delay: [500, 0], duration: [275, 0], maxWidth: 'none', - onTrigger: () => { + onShow: () => { showMap = true; }, - onUntrigger: () => { + onHide: () => { showMap = false; }, }}