From 09e172bbee80c1e37e0e2829794007fa3285c462 Mon Sep 17 00:00:00 2001 From: flisowna Date: Thu, 17 Nov 2022 13:49:33 +0300 Subject: [PATCH] geadata: fix overflow in popup binded to markers --- packages/nc-gui/components/smartsheet/Map.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/nc-gui/components/smartsheet/Map.vue b/packages/nc-gui/components/smartsheet/Map.vue index 73e1d5a748..e9a9a2c83c 100644 --- a/packages/nc-gui/components/smartsheet/Map.vue +++ b/packages/nc-gui/components/smartsheet/Map.vue @@ -108,4 +108,8 @@ onMounted(async () => { .no-underline a { text-decoration: none !important; } +.leaflet-popup-content-wrapper { + max-height: 255px; + overflow: scroll; +}