Skip to content

Commit

Permalink
d
Browse files Browse the repository at this point in the history
  • Loading branch information
“rafal.urn” committed Aug 18, 2024
1 parent d27c7c9 commit 97770bd
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions inst/source/tabs/tab1/ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,18 @@ fluidPage(
p("or edit an existing (*.zip)"),
br(),
fileInput(ns("UploadProjectFile"), NULL, accept = ".zip", multiple = FALSE),
HTML("</center>")
HTML("</center>"),

sidebarLayout(
sidebarPanel(
fileInput(ns("file1"), "Choose CSV File", accept = ".csv"),
checkboxInput("header", "Header", TRUE)
),
mainPanel(
tableOutput(ns("contents"))
)
)
)
)

fluidPage(
sidebarLayout(
sidebarPanel(
fileInput("file1", "Choose CSV File", accept = ".csv"),
checkboxInput("header", "Header", TRUE)
),
mainPanel(
tableOutput("contents")
)
)
)

# zawsze ns() do id !!!!! lacznie z output każdy id z ns() !!!!!

0 comments on commit 97770bd

Please sign in to comment.