We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b5f2d1 commit 83a656eCopy full SHA for 83a656e
1 file changed
src/reporting/render_report/report-template.qmd
@@ -721,6 +721,9 @@ qc_summary <- quality_control |>
721
) |>
722
tidyr::complete(category, fill = list(passed = 0, failed = 0))
723
724
+if (!"passed" %in% names(qc_summary)) qc_summary$passed <- 0L
725
+if (!"failed" %in% names(qc_summary)) qc_summary$failed <- 0L
726
+
727
reactable::reactable(
728
qc_summary,
729
columns = list(
0 commit comments