Link to technical changes repo
Some checks are pending
Deploy to GitHub Pages / build (push) Waiting to run
Deploy to GitHub Pages / deploy (push) Blocked by required conditions

This commit is contained in:
Misode
2025-01-23 01:15:32 +01:00
parent c1fc6fc2f1
commit 8c67166733
2 changed files with 5 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ import { Btn, TextInput } from '../index.js'
import { ChangelogEntry } from './ChangelogEntry.js'
const SEARCH_KEY = 'search'
const REPO = 'https://github.com/misode/technical-changes'
interface Props {
changes: Change[] | undefined,
@@ -75,6 +76,9 @@ export function ChangelogList({ changes, defaultOrder, limit, navigation }: Prop
{hiddenChanges > 0 && (
<Btn label={locale('changelog.show_more', `${hiddenChanges}`)} onClick={() => setLimitActive(false)}/>
)}
<span class="note py-2">
<a href={REPO} target="_blank">{locale('changelog.edit_on_github')}</a>
</span>
</div>
</>
}

View File

@@ -10,6 +10,7 @@
"back": "Back",
"change.obsolete": "This change has been replaced by a later change in this release cycle",
"changelog": "Technical changelog",
"changelog.edit_on_github": "Edit technical changes on GitHub",
"changelog.no_results": "No documented changes",
"changelog.search": "Search changes",
"changelog.show_more": "Show %0% more changes",