Skip to content

Commit 23a5c7a

Browse files
committed
fix #39
1 parent 912ae21 commit 23a5c7a

File tree

3 files changed

+2
-14
lines changed

3 files changed

+2
-14
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dashboard
22
Title: What the Package Does (One Line, Title Case)
3-
Version: 0.2.2.057
3+
Version: 0.2.2.058
44
Authors@R:
55
person(given = "First",
66
family = "Last",

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"name": "dashboard: What the Package Does (One Line, Title Case)",
77
"codeRepository": "https://github.com/ropensci-review-tools/dashboard",
88
"license": "https://spdx.org/licenses/MIT",
9-
"version": "0.2.2.057",
9+
"version": "0.2.2.058",
1010
"programmingLanguage": {
1111
"@type": "ComputerLanguage",
1212
"name": "R",

quarto/history.qmd

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,6 @@ submissions_stats <- get_submissions (dat [which (dat$stats), ], period = period
6969
submissions_stats$type <- "stats"
7070
submissions_stats$lty <- 1L
7171
72-
index <- which (submissions_gen$date %in% submissions_stats$date)
73-
index <- c (min (index) - 1L, index) # To ensure line joins to previous
74-
submissions_gen <- submissions_gen [index, ]
75-
7672
submissions <- rbind (submissions_all, submissions_gen, submissions_stats)
7773
```
7874

@@ -409,10 +405,6 @@ rev_dur_stats <- get_rev_durations (dat_closed [which (dat_closed$stats), ])
409405
rev_dur_stats$type <- "stats"
410406
rev_dur_stats$lty <- 1L
411407
412-
index <- which (rev_dur_gen$date %in% rev_dur_stats$date)
413-
index <- c (min (index) - 1L, index) # To ensure line joins to previous
414-
rev_dur_gen <- rev_dur_gen [index, ]
415-
416408
rev_dur <- rbind (rev_dur_all, rev_dur_gen, rev_dur_stats)
417409
```
418410

@@ -576,10 +568,6 @@ rev_hours_stats <- get_rev_hours (dat [which (dat$stats), ])
576568
rev_hours_stats$type <- "stats"
577569
rev_hours_stats$lty <- 1L
578570
579-
index <- which (rev_hours_gen$date %in% rev_hours_stats$date)
580-
index <- c (min (index) - 1L, index) # To ensure line joins to previous
581-
rev_hours_gen <- rev_hours_gen [index, ]
582-
583571
rev_hours <- rbind (rev_hours_all, rev_hours_gen, rev_hours_stats)
584572
585573
# Then raw historgram data:

0 commit comments

Comments
 (0)