Skip to content

Commit

Permalink
fix col names in editors page for #34
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Apr 30, 2024
1 parent 661c295 commit 138e24f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 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.2.2
Version: 0.2.2.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.2.2",
"version": "0.2.2.001",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down
13 changes: 13 additions & 0 deletions quarto/editors.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,12 @@ colorTable(filteredSorted,
issueNumColumn: "number",
columns: columns,
height: 'auto',
header: {
"editor": "Editor",
"last_active": "Last Active",
"status": "Status",
"stats": "Stats",
},
}
)
```
Expand Down Expand Up @@ -256,6 +262,13 @@ colorTable(filteredSortedRevs,
format: {
[numberColumn]: d => htl.html`<a href="https://github.com/ropensci/software-review/issues/${d}">${d}</a>`,
},
header: {
"number": "Issue number",
"title": "Title",
"state": "State",
"opened_at": "Opened",
"closed_at": "Closed",
},
height: 'auto',
}
)
Expand Down

0 comments on commit 138e24f

Please sign in to comment.