If I have something like:
observeEvent(input$in1, {
temp <<- input$in2
})
And I only want that to run when input$in1 changes, then do I have to put an isolate() around the input$in2? Or does observeEvent do that for me?
I have the same exact question about eventReactive() as well. Does it isolate all the inputs within it other the one explicitly given to it?