From 30f0c1f89d06a52787758b676de8ae15a27ace4a Mon Sep 17 00:00:00 2001 From: Shankari Date: Mon, 30 Nov 2020 15:25:42 -0800 Subject: [PATCH] Hide the "source" column from the trip table Since it doesn't add that much at this point. --- R/app_server.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/app_server.R b/R/app_server.R index e26570a..1eeaea6 100644 --- a/R/app_server.R +++ b/R/app_server.R @@ -113,7 +113,7 @@ app_server <- function( input, output, session ) { cols_to_remove_from_trips_table <- c("start_fmt_time0", "start_local_dt_timezone", "start_fmt_time", "end_fmt_time0", "end_local_dt_timezone", "end_fmt_time", "end_loc_coordinates", "start_loc_coordinates", - "duration", "distance", "geometry") + "duration", "distance", "geometry", "source") observeEvent(data_r$click, { callModule(mod_DT_server, "DT_ui_participants", @@ -140,7 +140,7 @@ app_server <- function( input, output, session ) { setdiff(c("start_fmt_time0", "start_local_dt_timezone", "start_local_time", "end_fmt_time0", "end_local_dt_timezone", "end_local_time", "end_loc_coordinates", "start_loc_coordinates", "duration", "distance", - "location_points")) + "location_points", "source")) }) filtered_trips <-