Skip to content

Commit

Permalink
updates for CRAN notes
Browse files Browse the repository at this point in the history
  • Loading branch information
merlinoa committed Apr 9, 2017
1 parent 2847106 commit e3542ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Package: shinyFeedback
Type: Package
Title: Displays User Feedback Next to Shiny Inputs
Version: 0.0.3
Date: 2016-12-19
Date: 2017-04-09
Authors@R: person("Andy", "Merlino", email = "merlinoa88@gmail.com", role =
c("aut", "cre"))
Description: Easily display user feedback next to Shiny inputs. The feedback message is displayed when the feedback condition evaluates to TRUE.
Expand Down
2 changes: 1 addition & 1 deletion R/feedback.R
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ feedback <- function(inputId, condition, text = NULL, color = NULL,
# some argument checks
stopifnot(is.character(inputId))
stopifnot(is.logical(condition))
icon <- as.character(shiny:::validateIcon(icon))
icon <- as.character(icon)
stopifnot(is.character(text) || is.null(text))
stopifnot(is.character(color) || is.null(color))

Expand Down

0 comments on commit e3542ba

Please sign in to comment.