fix validation errors
This commit is contained in:
@@ -15,6 +15,7 @@
|
|||||||
|
|
||||||
- fixed not erasing inputs while loading empty values (with checkboxes, radiobuttons);
|
- fixed not erasing inputs while loading empty values (with checkboxes, radiobuttons);
|
||||||
- +number input validation
|
- +number input validation
|
||||||
|
- fix validation errors (2025-03-18);
|
||||||
|
|
||||||
##### changes
|
##### changes
|
||||||
- redesign work with db (open connection only when action performed) (2024-03-03);
|
- redesign work with db (open connection only when action performed) (2024-03-03);
|
||||||
|
|||||||
2
app.R
2
app.R
@@ -38,7 +38,7 @@ SCHEME_MAIN <- readxl::read_xlsx(FILE_SCHEME) %>%
|
|||||||
# fill NA down
|
# fill NA down
|
||||||
fill(c(part, subgroup, form_id, form_label, form_type), .direction = "down") %>%
|
fill(c(part, subgroup, form_id, form_label, form_type), .direction = "down") %>%
|
||||||
group_by(form_id) %>%
|
group_by(form_id) %>%
|
||||||
fill(condition, .direction = "down") %>%
|
fill(c(condition, required), .direction = "down") %>%
|
||||||
ungroup()
|
ungroup()
|
||||||
|
|
||||||
# get list of simple inputs
|
# get list of simple inputs
|
||||||
|
|||||||
Reference in New Issue
Block a user