Previous on the pagination is not visible for cyborg theme
Open
Nobody has claimed this yet.
- Dominant language
- SCSS
- Stars
- 569
- Forks
- 72
- Avg merge
- 1d 2h
- Merged PRs (30d)
- 5
Description
Install remotes::install_github("rstudio/DT") and change theme to cyborg when you run below app. Previous on the pagination is not visible.
library(shiny)
library(DT)
ui <- fluidPage(
theme = bslib::bs_theme(),
dataTableOutput("x")
)
server <- function(input, output, session) {
bslib::bs_themer()
output$x <- renderDataTable({
datatable(mtcars)
})
}
shinyApp(ui, server)
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Reproduce the provided Shiny app with bslib's cyborg theme and the DT pagination. Inspect the theme and pagination styling responsible for the missing Previous control; done means Previous is visible and the pagination remains usable in the example.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- bootstrap, r, scss
- Domain
- frontend
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100