Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: shinyMatrix
Title: Shiny Matrix Input Field
Version: 0.8.0
Version: 0.8.1
Date: 2024-04-10
Author: Andreas Neudecker
Maintainer: Andreas Neudecker <andreas.neudecker@inwt-statistics.de>
Expand Down
2 changes: 1 addition & 1 deletion R/matrixInput.R
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ matrixInput <- function(inputId,
singleton(tags$head(tags$link(rel = "stylesheet", type = "text/css", href = "shinyMatrix/matrix-input.css"))),
tags$div(
class = "form-group shiny-matrix-input-container shiny-input-container-inline shiny-input-container",
if (!is.null(label)) tags$label(label, `for` = inputId) else NULL,
tags$label(class = c("control-label", if (is.null(label)) "shiny-label-null"), `for` = inputId, label),
inputField
)
)
Expand Down
Loading