From 8e2466fafd3b1d8ea42eb1a9124342e272997b67 Mon Sep 17 00:00:00 2001
From: LE DURAND Matteo <matteo.le-durand@developpement-durable.gouv.fr>
Date: Thu, 27 Mar 2025 15:24:56 +0100
Subject: [PATCH] =?UTF-8?q?fix:=20le=20prefixer=20=C3=A0=20=C3=A9t=C3=A9?=
 =?UTF-8?q?=20trop=20puissant?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 server.R | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/server.R b/server.R
index f372f94..cdc102f 100644
--- a/server.R
+++ b/server.R
@@ -17,7 +17,7 @@ server <- function(input, output, session) {
           updated_at <= as.Date(input$daterange[[2]])
       )
     # Mise à jour dynamique des autres filtres en fonction des données filtrées par date
-    DT::updateFilters()
+    updateFilters()
   })
 
   # 2️⃣ Mise à jour dynamique des filtres ----
@@ -67,7 +67,7 @@ server <- function(input, output, session) {
       )
 
     # Mettre à jour les filtres restants
-    DT::updateFilters()
+    updateFilters()
   })
 
   # 4️⃣ Réinitialisation des filtres ----
@@ -100,7 +100,7 @@ server <- function(input, output, session) {
         axis.title.y = ggplot2::element_blank()
       )
 
-    plotly::ggplotly(shiny::p, tooltip = "text", dynamicTicks = TRUE)    %>%
+    plotly::ggplotly(p, tooltip = "text", dynamicTicks = TRUE)    %>%
       plotly::config(locale = "fr", displaylogo = FALSE)
   })
 
-- 
GitLab