Skip to content

Commit 2f6b84a

Browse files
nsheapsclaude
andauthored
feat: make commit hash on about page a clickable link to GitHub (#21)
The short commit SHA shown on the about page now links directly to the commit on GitHub, making it easy to see what version is deployed. https://claude.ai/code/session_01AGxrwUaQ915gGyiLcjBu8U Co-authored-by: Claude <noreply@anthropic.com>
1 parent 9d4089e commit 2f6b84a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/ui/src/components/settings/SettingsModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ export function SettingsModal({
533533
<p className="cept-settings-about-version" data-testid="about-version">
534534
Version {typeof __APP_VERSION__ !== 'undefined' ? __APP_VERSION__ : '0.0.0-dev'}
535535
{typeof __COMMIT_SHA__ !== 'undefined' && __COMMIT_SHA__ && (
536-
<span className="cept-settings-about-commit"> ({__COMMIT_SHA__.slice(0, 7)})</span>
536+
<span className="cept-settings-about-commit"> (<a href={`https://github.com/nsheaps/cept/commit/${__COMMIT_SHA__}`} target="_blank" rel="noopener noreferrer">{__COMMIT_SHA__.slice(0, 7)}</a>)</span>
537537
)}
538538
</p>
539539
<div className="cept-settings-section-divider" />

0 commit comments

Comments
 (0)