Skip to content

Commit

Permalink
clean up summary table
Browse files Browse the repository at this point in the history
  • Loading branch information
andersone1 authored and michaelmcd18 committed Nov 6, 2024
1 parent 4b0834d commit c4cb242
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions inst/templates/QCSummary.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ needs_qc <-
needs_qc %>%
pmtables::st_new() %>%
pmtables::st_left(`Previous QCers` = pmtables::col_ragged(4)) %>%
pmtables::st_left(File = pmtables::col_ragged(10)) %>%
pmtables::stable_long() %>%
pmtables::st_asis()
Expand Down Expand Up @@ -123,16 +124,14 @@ if (nrow(not_in_log) == 0) {
"No files that are not in the QC log were modified within the last ",
at_risk_days,
" days"
),
`Previous QCers` = "None"
)
)
}
not_in_log %>%
pmtables::st_new() %>%
pmtables::st_left(File = pmtables::col_ragged(10)) %>%
pmtables::st_left(`Previous QCers` = pmtables::col_ragged(4)) %>%
pmtables::stable_long(
lt_cap_text = "*Files in this table have been edited within the last (20) days"
) %>%
Expand Down

0 comments on commit c4cb242

Please sign in to comment.