Skip to content

Commit

Permalink
Merge branch 'f7-v8.3.2' of github.com:RinteRface/shinyMobile into f7…
Browse files Browse the repository at this point in the history
…-v8.3.2
  • Loading branch information
DivadNojnarg committed May 24, 2024
2 parents 2e19f9c + b63e524 commit 6030464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/onLoad.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
as.POSIXct(f7DatePicker.date / 1000, tz = "UTC", origin = "1970-01-01")
} else {
# check if there's a time component
if (grepl("T", f7DatePicker.date)) {
if (any(grepl("T", f7DatePicker.date))) {

Check warning on line 12 in R/onLoad.R

View check run for this annotation

Codecov / codecov/patch

R/onLoad.R#L12

Added line #L12 was not covered by tests
as.POSIXct(f7DatePicker.date, format = "%Y-%m-%dT%H:%M:%S", tz = "UTC")
} else {
as.Date(f7DatePicker.date)
Expand Down

0 comments on commit 6030464

Please sign in to comment.