Skip to content

Commit

Permalink
Fixed issue with clean option for UD being read in as text and not lo…
Browse files Browse the repository at this point in the history
…gical.
  • Loading branch information
john-harrold committed Nov 30, 2024
1 parent 4b77781 commit 67a9ad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/UD_Server.R
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ UD_Server <- function(id,
shinyWidgets::materialSwitch(
inputId = NS(id, "switch_clean"),
label = state[["MC"]][["labels"]][["switch_clean"]],
value = state[["UD"]][["clean"]],
value = as.logical(state[["UD"]][["clean"]]),
status = "success"
)

Expand Down

0 comments on commit 67a9ad9

Please sign in to comment.