79449221

Date: 2025-02-18 18:07:49
Score: 0.5
Natty:
Report link

adding isolate() in this line :

selected <- ifelse(input$inSelect %in% x, input$inSelect, tail(x, 1))

so it looks like this:

selected <- ifelse(isolate(input$inSelect) %in% x, isolate(input$inSelect), tail(x, 1))

appears to solve the problem

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Zoltan