Browse Source

Admin UI: Fix broken links (#2660)

pull/2663/head
Philipp 2 years ago committed by GitHub
parent
commit
4aaabaac07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      web/components/admin/Offline.tsx
  2. 2
      web/components/admin/notification/federation.tsx
  3. 2
      web/pages/admin/help.tsx

4
web/components/admin/Offline.tsx

@ -117,7 +117,7 @@ export const Offline: FC<OfflineProps> = ({ logs = [], config }) => { @@ -117,7 +117,7 @@ export const Offline: FC<OfflineProps> = ({ logs = [], config }) => {
content: (
<div>
List yourself in the Owncast Directory and show off your stream. Enable it in{' '}
<Link href="/config-public-details">settings.</Link>
<Link href="/admin/config/general/">settings.</Link>
</div>
),
});
@ -129,7 +129,7 @@ export const Offline: FC<OfflineProps> = ({ logs = [], config }) => { @@ -129,7 +129,7 @@ export const Offline: FC<OfflineProps> = ({ logs = [], config }) => {
title: 'Add your Owncast instance to the Fediverse',
content: (
<div>
<Link href="/config-federation">Enable Owncast social</Link> features to have your
<Link href="/admin/config-federation/">Enable Owncast social</Link> features to have your
instance join the Fediverse, allowing people to follow, share and engage with your live
stream.
</div>

2
web/components/admin/notification/federation.tsx

@ -33,7 +33,7 @@ export const ConfigNotify = () => { @@ -33,7 +33,7 @@ export const ConfigNotify = () => {
</span>
</p>
<Link passHref href="/config-federation">
<Link passHref href="/admin/config-federation/">
<Button
type="primary"
style={{

2
web/pages/admin/help.tsx

@ -168,7 +168,7 @@ export default function Help() { @@ -168,7 +168,7 @@ export default function Help() {
<div>
Most general questions are answered in our
<a
href="https://owncast.online/docs/faq/?source=admin"
href="https://owncast.online/faq/?source=admin"
target="_blank"
rel="noopener noreferrer"
>

Loading…
Cancel
Save