Skip to content

Commit

Permalink
feat(fuzzyhelp): increase height of help viewer
Browse files Browse the repository at this point in the history
by moving label of search query input to placeholder
  • Loading branch information
atusy committed May 5, 2024
1 parent 929056e commit 42c32f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/fuzzyhelp.R
Original file line number Diff line number Diff line change
Expand Up @@ -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%"
),
Expand Down

0 comments on commit 42c32f9

Please sign in to comment.