Skip to content

Commit

Permalink
update text for 'No stage' issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Apr 25, 2024
1 parent 3cffdd9 commit c01cf9d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: dashboard
Title: What the Package Does (One Line, Title Case)
Version: 0.1.9
Version: 0.1.9.001
Authors@R:
person(given = "First",
family = "Last",
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"name": "dashboard: What the Package Does (One Line, Title Case)",
"codeRepository": "https://github.com/ropensci-review-tools/dashboard",
"license": "https://spdx.org/licenses/MIT",
"version": "0.1.9",
"version": "0.1.9.001",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down
21 changes: 18 additions & 3 deletions quarto/reviews.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,24 @@ the following controls:
- "Sort By" to sort results either by the Submission Stage ("stage", 0-5), or
"urgency", as described below.

Some rows in the table are highlighted to visually indicate degrees of urgency
according to the scheme defined in the following sub-section. Rows with no
highlight may be considered up-to-date, and require no action.
```{r table-explanation, echo = FALSE, results = 'asis'}
txt <- paste (
"Some rows in the table are highlighted to visually indicate degrees",
"of urgency according to the scheme defined in the following",
"sub-section. Rows with no highlight may be considered up-to-date,",
"and require no action."
)
has_no_stage <- any (rev_dat$stage_num < 0)
if (has_no_stage) {
txt <- paste (
txt,
"Submissions which have not yet been given a 'Stage' label are",
"listed below as '(No stage)', and highlighted with the highest",
"urgency level."
)
}
cat (txt)
```

```{r rev-dat-prepro}
# Final pre-processing to add 'holding' column, and an 'urgency_rev' column so
Expand Down

0 comments on commit c01cf9d

Please sign in to comment.