Corregir formato en las fechas de la plantilla CLINICS.

This commit is contained in:
Costa
2022-03-31 14:18:46 +02:00
parent c9d09c44a2
commit 9b8f24ddd8
+3 -1
View File
@@ -183,7 +183,9 @@ server <- function(input, output) {
output$CLINICS <- renderRHandsontable({ output$CLINICS <- renderRHandsontable({
if (!is.null(CLINICS)){ if (!is.null(CLINICS)){
rhandsontable(values[["CLINICS"]], stretchH = "all", readOnly = F, useTypes = T) rhandsontable(values[["CLINICS"]], stretchH = "all", readOnly = F, useTypes = T) %>%
hot_col(values[["CLINICS"]] %>% select(lubridate::is.Date) %>% colnames,
dateFormat = "DD/MM/YY", type = "date")
} }
}) })