From 11b9c0f31a3dda869c2eacf2a2a0db6848c06ede Mon Sep 17 00:00:00 2001 From: shahronak47 Date: Mon, 18 Nov 2024 20:26:48 +0530 Subject: [PATCH 1/2] fix for #25 --- R/selectInput_column.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/selectInput_column.R b/R/selectInput_column.R index b4d2635..6138f54 100644 --- a/R/selectInput_column.R +++ b/R/selectInput_column.R @@ -61,7 +61,7 @@ columnSelectInput <- function(inputId, label, data, choices = names, }, // avoid data vomit splashing on screen when an option is selected - item: function(item, escape) { return ''; } + // item: function(item, escape) { return ''; } }")), # fix for highlight persisting From 0fd1e1f7163f1ba0832252d9fa21044b5c9736a3 Mon Sep 17 00:00:00 2001 From: shahronak47 Date: Thu, 21 Nov 2024 20:26:26 +0530 Subject: [PATCH 2/2] return empty HTML --- R/selectInput_column.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/selectInput_column.R b/R/selectInput_column.R index 6138f54..3ac7099 100644 --- a/R/selectInput_column.R +++ b/R/selectInput_column.R @@ -61,7 +61,7 @@ columnSelectInput <- function(inputId, label, data, choices = names, }, // avoid data vomit splashing on screen when an option is selected - // item: function(item, escape) { return ''; } + item: function(item, escape) {return '
'} }")), # fix for highlight persisting