Skip to content
Snippets Groups Projects
Unverified Commit a281f97c authored by Todor Kondic's avatar Todor Kondic
Browse files

get_tags_from_txt: Fix problem with isolation

* R/shiny-ui-config.R(get_tags_from_txt): Isolating input$tagsInp
  prevents fireworks.
parent 49cc6c0e
No related branches found
No related tags found
No related merge requests found
......@@ -132,7 +132,7 @@ react_conf_f <- function(input,output,session,rv,rf) {
rf$get_tags_from_txt <- react_f({
## Tags in the text box.
input$updTagsB
if (isTruthy(input$tagsInp)) txt2tags(input$tagsInp) else TAG_DEF
isol(if (isTruthy(input$tagsInp)) unique(txt2tags(input$tagsInp)) else TAG_DEF)
})
rf
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment