Skip to content

Commit

Permalink
corrected copy and paste comment error
Browse files Browse the repository at this point in the history
removed "./CustomCSV" duplciation from mySpGSResponses filepath
  • Loading branch information
nevilamos committed Aug 6, 2021
1 parent 690b22a commit 6626adb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server.r
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ server <- function(session, input, output) {
rv$customResponseName <- basename(rv$customResponseFile)
}
})
#Observer to display selected customSpListName in UI
#Observer to display selected customResponseName in UI
observeEvent(rv$customResponseName, {
output$customResponseName <- renderText(rv$customResponseName)
})
Expand Down Expand Up @@ -612,7 +612,7 @@ server <- function(session, input, output) {
mySpGSResponses <- "./ReferenceTables/OrdinalExpertLong.csv"
} else{
mySpGSResponses <-
file.path("./CustomCSV", rv$customResponseFile)
file.path(rv$customResponseFile)
}
#Select the file giving the fauna relative abundance inputs you wish to use------
if (rv$abundByGS == TRUE) {
Expand Down

0 comments on commit 6626adb

Please sign in to comment.