Skip to content

Commit c208a60

Browse files
authored
Merge pull request #75 from ropensci-review-tools/url-search-params
don't need explicit search params from contributor -> repo page #66
2 parents 7d78254 + c9f5311 commit c208a60

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: orgmetrics
22
Title: Metrics for Your GitHub Organization
3-
Version: 0.1.2.102
3+
Version: 0.1.2.103
44
Authors@R:
55
person("Mark", "Padgham", , "[email protected]", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0003-2172-5265"))

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"codeRepository": "https://github.com/ropensci-review-tools/orgmetrics",
99
"issueTracker": "https://github.com/ropensci-review-tools/orgmetrics/issues",
1010
"license": "https://spdx.org/licenses/GPL-3.0",
11-
"version": "0.1.2.102",
11+
"version": "0.1.2.103",
1212
"programmingLanguage": {
1313
"@type": "ComputerLanguage",
1414
"name": "R",

inst/extdata/quarto/contributor.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function pkgfmt(pkg) {
5757
th.addEventListener("click", () => {
5858
localStorage.setItem("orgmetricsRepo", pkg);
5959
th.style.background="#a0f8ff";
60-
window.location.href="/repo.html?repo=" + pkg;
60+
window.location.href="/repo.html";
6161
});
6262
6363
return th;
@@ -330,7 +330,7 @@ chart = {
330330
`<a href="/contributor.html"
331331
onclick="localStorage.setItem('orgmetricsMaintainer', '${d.id}')">${d.id}</a>` :
332332
((d.group === "packages" || d.group === "otherPackages") ?
333-
`<a href="/repo.html?repo=${d.id}"
333+
`<a href="/repo.html"
334334
onclick="localStorage.setItem('orgmetricsRepo', '${d.id}')">${d.id}</a>` :
335335
d.id))
336336
.clone(true).lower()

0 commit comments

Comments
 (0)