Skip to content

Commit 9cddaaa

Browse files
committed
Mention Dewey's contribution in NEWS
Closes #14
1 parent 5ab4c7b commit 9cddaaa

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11

22
# vdiffr 0.3.0.9000
33

4+
- The testthat context is now shown on the Shiny app (#14,
5+
@paleolimbot).
6+
47
- Fix warnings in non-UTF-8 MBCS locale (#59, @yutannihilation).
58

69

R/shiny-server.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ validateGroupCases <- function(input, reactive_cases) {
182182

183183
renderCaseContext <- function(input, reactive_cases) {
184184
shiny::renderUI({
185-
if(length(reactive_cases$active()) > 0 && !is.null(input$case)) {
185+
if (length(reactive_cases$active()) > 0 && !is.null(input$case)) {
186186
active_case <- reactive_cases$active()[[input$case]]
187187
shiny::p(
188188
shiny::strong("Context: "),

0 commit comments

Comments
 (0)