mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-07 03:00:20 -04:00
increase default length of label to 250chars from 100chars
This commit is contained in:
@@ -511,7 +511,7 @@ MessageLogger = R6Class(
|
||||
if (identical(force, FALSE) && self$isNotLogging()) return(NULL)
|
||||
self$reactCache[[reactObj$reactId]] <- reactObj
|
||||
},
|
||||
shortenString = function(txt, n = 100) {
|
||||
shortenString = function(txt, n = 250) {
|
||||
if (nchar(txt) > n) {
|
||||
paste0(substr(txt, 1, n - 3), "...")
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user