Skip to content

Commit cfcca0c

Browse files
committed
Merge branch 'main' into redesign_extraction@main
2 parents f5348a0 + 04409d7 commit cfcca0c

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Type: Package
22
Package: teal
33
Title: Exploratory Web Apps for Analyzing Clinical Trials Data
4-
Version: 1.0.0.9018
5-
Date: 2025-10-17
4+
Version: 1.0.0.9020
5+
Date: 2025-10-28
66
Authors@R: c(
77
person("Dawid", "Kaledkowski", , "dawid.kaledkowski@roche.com", role = c("aut", "cre"),
88
comment = c(ORCID = "0000-0001-9533-457X")),

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# teal 1.0.0.9018
1+
# teal 1.0.0.9020
22

33
### New features
44

R/module_source_code.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ srv_source_code <- function(id, module_out) {
6565
if (length(reason)) {
6666
icon <- if (grepl("error", reason)) "exclamation-triangle-fill" else "info-circle-fill"
6767
shiny::div(
68-
class = if (grepl("error", reason)) "text-danger" else "text-info",
68+
class = if (grepl("error", reason)) "text-warning" else "text-info",
6969
style = "padding-top: 0.5em;",
7070
bsicons::bs_icon(name = icon),
7171
reason

vignettes/teal-options.Rmd

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@ list(
156156
)
157157
```
158158

159+
### `teal.reporter.max_request_size` (`numeric`)
160+
161+
Allows to control the maximum size of a `shiny::fileInput`. Meant for large report file uploads.
162+
Default: `10 * 1024^2` which stands for 10MB.
159163
### `teal.show_src` (`logical`)
160164

161165
It allows customizing the visibility of the "Show R Code" button in the module title bar.

0 commit comments

Comments
 (0)