Skip to content

Commit

Permalink
Making error messages more informative.
Browse files Browse the repository at this point in the history
  • Loading branch information
zackbatist committed Sep 9, 2020
1 parent 4182a44 commit ee396af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FLiRT.R
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,8 @@ shinyApp(
}

if (nrow(CurrentResults) == 0) {
output$SummaryInfo <- renderPrint("Here I am, brain the size of a planet, and you ask me to count lithics. Well, I can't find any that match your criteria.")
output$SummaryInfo <- renderText(paste("No lithics match criteria."))
output$SummaryInfo <- renderPrint("No records found matching the criteria specified.")
output$SummaryInfo <- renderText(paste("No records found matching the criteria specified."))
output$Level2Table <- renderDataTable(datatable(CurrentResults))
}

Expand Down

0 comments on commit ee396af

Please sign in to comment.