Ifeanyi commited on
Commit
26d359a
·
verified ·
1 Parent(s): 6d3dfa8

Update app.R

Browse files
Files changed (1) hide show
  1. app.R +1 -2
app.R CHANGED
@@ -14,7 +14,6 @@ ui <- fluidPage(
14
  theme = shinytheme("cyborg"),
15
  tags$h3(id = "title", tags$strong("Graphic-Walker Data Explorer"),style = "text-align:center;color:lightblue;"),
16
  tags$a(href = "https://github.com/Ifeanyi55", tags$strong("Maintainer"),target = "_blank",style = "text-decoration:none;color:lightblue;margin-left:1250px;margin-bottom:1000px"),
17
- tags$img(src = "plot.jpeg",width = 170,height = 100),br(),br(),
18
  sidebarLayout(
19
  sidebarPanel(width = 3,style = "border-width:5px;border-color:lightblue;", fileInput("target_upload",h5(strong("Click to Upload CSV File"),style = "color:lightblue;"),
20
  accept = c("text/csv"),
@@ -40,7 +39,7 @@ server <- function(input,output,session){
40
  gwalkr(file_upload())
41
  },
42
  error = function(e){
43
- message("Could not display interface")
44
  }
45
  )
46
  })
 
14
  theme = shinytheme("cyborg"),
15
  tags$h3(id = "title", tags$strong("Graphic-Walker Data Explorer"),style = "text-align:center;color:lightblue;"),
16
  tags$a(href = "https://github.com/Ifeanyi55", tags$strong("Maintainer"),target = "_blank",style = "text-decoration:none;color:lightblue;margin-left:1250px;margin-bottom:1000px"),
 
17
  sidebarLayout(
18
  sidebarPanel(width = 3,style = "border-width:5px;border-color:lightblue;", fileInput("target_upload",h5(strong("Click to Upload CSV File"),style = "color:lightblue;"),
19
  accept = c("text/csv"),
 
39
  gwalkr(file_upload())
40
  },
41
  error = function(e){
42
+ message("No CSV file uploaded yet")
43
  }
44
  )
45
  })