From 42c32f951090fa218342d4e576a8478a0b32939a Mon Sep 17 00:00:00 2001 From: atusy <30277794+atusy@users.noreply.github.com> Date: Sun, 5 May 2024 00:06:45 +0900 Subject: [PATCH] feat(fuzzyhelp): increase height of help viewer by moving label of search query input to placeholder --- R/fuzzyhelp.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/R/fuzzyhelp.R b/R/fuzzyhelp.R index fafa217..f4faf32 100644 --- a/R/fuzzyhelp.R +++ b/R/fuzzyhelp.R @@ -277,7 +277,8 @@ create_ui <- function(query = "", background = FALSE) { miniUI::miniContentPanel( shiny::textInput( "query", - label = "Search query", + label = NULL, + placeholder = "Search query", value = paste(query, collapse = " "), width = "100%" ),