Skip to content
New issue

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

Bug/Typo in the insertUI example #71

Open
chendaniely opened this issue Nov 17, 2017 · 0 comments
Open

Bug/Typo in the insertUI example #71

chendaniely opened this issue Nov 17, 2017 · 0 comments

Comments

@chendaniely
Copy link
Member

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...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant