Skip to content

Commit

Permalink
Update server.R
Browse files Browse the repository at this point in the history
  • Loading branch information
User1391 authored Mar 7, 2019
1 parent e8ee8c4 commit 314854f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion server.R
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,11 @@ df[df=="?"] <- 0
###################

output$robot_num <- renderText({
paste("Team", input$robot_numSearch)
if (!is.element(input$robot_numSearch, df$Robot_Num)) {
"Overall"
} else {
paste("Team", input$robot_numSearch)
}
})
#THE RADAR CHARTS OF GODS
output$robot_skills_radar <- renderPlot({
Expand Down

0 comments on commit 314854f

Please sign in to comment.