We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the "Relevant code chunks" section of the insertUI has a missing closing parenthesis.
It says:
server.R: observeEvent(input$insertBtn, { insertUI( selector = '#placeholder', ui = radioButtons('rd4', 'Choose one', c('a', 'b', 'c') ) })
it should be
server.R: observeEvent(input$insertBtn, { insertUI( selector = '#placeholder', ui = radioButtons('rd4', 'Choose one', c('a', 'b', 'c')) # missing paren here. ) })
The app that is listed in this current repo doesn't have the code that is displaying the text. So I'm not sure where to sent the PR...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
the "Relevant code chunks" section of the insertUI has a missing closing parenthesis.
It says:
it should be
The app that is listed in this current repo doesn't have the code that is displaying the text.
So I'm not sure where to sent the PR...
The text was updated successfully, but these errors were encountered: