Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Commit

Permalink
reduce cols in pre-sub tables
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Mar 14, 2024
1 parent fe18412 commit 43e397e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reviews.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ dat0_lab <- dplyr::rename (dat0_lab, "inactive_for" = elapsed) |>
dplyr::arrange (dplyr::desc (elapsed_days))
dat0_lab$editor [which (!nzchar (dat0_lab$editor))] <- "(None)"
gt::gt (dat0_lab) |>
gt::cols_hide (c (urgency, elapsed_days)) |>
gt::cols_hide (c (urgency, state, elapsed_days)) |>
add_urgency_cols () |>
add_bg_colours ()
```
Expand All @@ -175,7 +175,7 @@ dat0_nolab <- dplyr::rename (dat0_nolab, "inactive_for" = elapsed) |>
dplyr::arrange (dplyr::desc (elapsed_days))
dat0_nolab$editor [which (!nzchar (dat0_nolab$editor))] <- "(None)"
gt::gt (dat0_nolab) |>
gt::cols_hide (c (urgency, elapsed_days)) |>
gt::cols_hide (c (urgency, state, stage_date, editor, elapsed_days)) |>
add_urgency_cols () |>
add_bg_colours ()
```
Expand Down

0 comments on commit 43e397e

Please sign in to comment.