summaryrefslogtreecommitdiff
path: root/source/features/repo-age.tsx
diff options
context:
space:
mode:
authorGravatar Federico Brigante <me@fregante.com> 2021-10-04 13:40:49 +0200
committerGravatar GitHub <noreply@github.com> 2021-10-04 13:40:49 +0200
commitd3bc037b7b574b6bfa8f175ea35aed1b55e92bbb (patch)
tree2e18fd044945985ce72407db83aa930549cc0281 /source/features/repo-age.tsx
parentc1f3484bf9d6aaf9e991187b0bb06decf52cd30d (diff)
downloadrefined-github-d3bc037b7b574b6bfa8f175ea35aed1b55e92bbb.tar.gz
refined-github-d3bc037b7b574b6bfa8f175ea35aed1b55e92bbb.tar.zst
refined-github-d3bc037b7b574b6bfa8f175ea35aed1b55e92bbb.zip
Drop fallback code for old GitHub Enterprise versions (#4864)
Diffstat (limited to 'source/features/repo-age.tsx')
-rw-r--r--source/features/repo-age.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/repo-age.tsx b/source/features/repo-age.tsx
index 7a0978f7..f730498d 100644
--- a/source/features/repo-age.tsx
+++ b/source/features/repo-age.tsx
@@ -114,7 +114,7 @@ async function init(): Promise<void> {
sidebarAboutSection!.append(
<h3 className="sr-only">Repository age</h3>,
<div className="mt-3">
- <a href={firstCommitHref} className="muted-link Link--muted" title={`First commit dated ${dateFormatter.format(birthday)}`}>
+ <a href={firstCommitHref} className="Link--muted" title={`First commit dated ${dateFormatter.format(birthday)}`}>
<RepoIcon className="mr-2"/>{age}
</a>
</div>,