We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6643a3 commit 7d0e7e1Copy full SHA for 7d0e7e1
1 file changed
R/Message-class.R
@@ -81,9 +81,12 @@ cli_note <- function(...) {
81
clifun(
82
head(unlist(alerttitle, use.names = FALSE), 1L)
83
)
84
+ id <- cli::cli_div(theme = list(div = list("margin-left" = 2L)))
85
if (identical(length(comps), 3L))
86
cli::cli_text(unlist(alerttitle, use.names = FALSE)[2L])
- cli::cli_bullets(dotlist)
87
+ for (item in dotlist)
88
+ cli::cli_li(item)
89
+ cli::cli_end(id)
90
}
91
.self$msg
92
},
0 commit comments