Skip to content

Commit 8c67166

Browse files
committed
Link to technical changes repo
1 parent c1fc6fc commit 8c67166

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/app/components/versions/ChangelogList.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { Btn, TextInput } from '../index.js'
88
import { ChangelogEntry } from './ChangelogEntry.js'
99

1010
const SEARCH_KEY = 'search'
11+
const REPO = 'https://github.com/misode/technical-changes'
1112

1213
interface Props {
1314
changes: Change[] | undefined,
@@ -75,6 +76,9 @@ export function ChangelogList({ changes, defaultOrder, limit, navigation }: Prop
7576
{hiddenChanges > 0 && (
7677
<Btn label={locale('changelog.show_more', `${hiddenChanges}`)} onClick={() => setLimitActive(false)}/>
7778
)}
79+
<span class="note py-2">
80+
<a href={REPO} target="_blank">{locale('changelog.edit_on_github')}</a>
81+
</span>
7882
</div>
7983
</>
8084
}

src/locales/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"back": "Back",
1111
"change.obsolete": "This change has been replaced by a later change in this release cycle",
1212
"changelog": "Technical changelog",
13+
"changelog.edit_on_github": "Edit technical changes on GitHub",
1314
"changelog.no_results": "No documented changes",
1415
"changelog.search": "Search changes",
1516
"changelog.show_more": "Show %0% more changes",

0 commit comments

Comments
 (0)