Skip to content

Commit aee06e2

Browse files
committed
build(wiki): now some rows may be duplicated, so ensure remove these
1 parent 183265d commit aee06e2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build/reports/wiki_home.Rmd

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ df_images <- fs::dir_ls(path = "reports/imagelist", glob = "*.tsv") |>
6565
CreatedTime = lubridate::ymd_hms(X4),
6666
.keep = "none"
6767
) |>
68-
dplyr::slice_max(order_by = CreatedTime, with_ties = TRUE, by = tags)
68+
dplyr::slice_max(order_by = CreatedTime, with_ties = TRUE, by = tags) |>
69+
dplyr::distinct()
6970
7071
7172
df_current_raw <- df_definitions |>

0 commit comments

Comments
 (0)