Error messages contradictory - manual data 'upload complete' and error 'invalid data' on the 'Data Selection' page. Only when Manual Input has been selected.
Revision required here in app.R Line 522:
Create dynamic text to describe whether user data has been imported of or not
output$manual_data_chosen_ui <-
shiny::renderUI(
{
if (is.null(input$ownFile) || !is.null(validate_upload())) {
fluidRow(
column(
11,
offset = 1,
strong(
"You have not imported any data or have imported invalid data.",
style = "color: red"
)
May require more nuanced labelling of data as !is.null(validate_upload()
Key thing is the error message shows before any data has been uploaded:
Then remains when data has been uploaded:
