diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ee91987cd..5a6fa1a203 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Birthdays: move today's birthdays out of notifications into right sidebar. - Performance: improve scrolling/navigation between feeds by using a virtual window library. - Admin: admin UI into 3-column layout. +- Admin: include external link to frontend repo for the running commit. ### Removed - Theme: Halloween theme. diff --git a/app/soapbox/features/admin/tabs/dashboard.tsx b/app/soapbox/features/admin/tabs/dashboard.tsx index 6b7de27471..dd0f9f1bd2 100644 --- a/app/soapbox/features/admin/tabs/dashboard.tsx +++ b/app/soapbox/features/admin/tabs/dashboard.tsx @@ -4,7 +4,7 @@ import { useHistory } from 'react-router-dom'; import { getSubscribersCsv, getUnsubscribersCsv, getCombinedCsv } from 'soapbox/actions/email-list'; import List, { ListItem } from 'soapbox/components/list'; -import { CardTitle, IconButton, Stack } from 'soapbox/components/ui'; +import { CardTitle, Icon, IconButton, Stack } from 'soapbox/components/ui'; import { useAppDispatch, useOwnAccount, useFeatures, useInstance } from 'soapbox/hooks'; import sourceCode from 'soapbox/utils/code'; import { download } from 'soapbox/utils/download'; @@ -113,7 +113,18 @@ const Dashboard: React.FC = () => { }> - {sourceCode.displayName} {sourceCode.version} + + {sourceCode.displayName} {sourceCode.version} + + + }> diff --git a/app/soapbox/utils/code.js b/app/soapbox/utils/code.js index 3316a931fc..205bda6b65 100644 Binary files a/app/soapbox/utils/code.js and b/app/soapbox/utils/code.js differ