75 lines
2.8 KiB
Diff
75 lines
2.8 KiB
Diff
|
From 837f1824fb44a3f9d47370ebb098e09f84e7fd9d Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber@stgraber.org>
|
||
|
Date: Wed, 22 Nov 2023 23:02:27 +0000
|
||
|
Subject: [PATCH 2/5] Update navigation
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
Signed-off-by: Stéphane Graber <stgraber@stgraber.org>
|
||
|
---
|
||
|
src/components/Navigation.tsx | 5 ++---
|
||
|
src/components/NoMatch.tsx | 2 +-
|
||
|
src/context/useDocs.tsx | 2 +-
|
||
|
3 files changed, 4 insertions(+), 5 deletions(-)
|
||
|
|
||
|
diff --git a/src/components/Navigation.tsx b/src/components/Navigation.tsx
|
||
|
index 0e0c704..93d2db2 100644
|
||
|
--- a/src/components/Navigation.tsx
|
||
|
+++ b/src/components/Navigation.tsx
|
||
|
@@ -287,7 +287,7 @@ const Navigation: FC = () => {
|
||
|
<li className="p-side-navigation__item">
|
||
|
<a
|
||
|
className="p-side-navigation__link"
|
||
|
- href="https://discourse.ubuntu.com/c/lxd/126"
|
||
|
+ href="https://discuss.linuxcontainers.org"
|
||
|
target="_blank"
|
||
|
rel="noreferrer"
|
||
|
title="Discussion"
|
||
|
@@ -302,7 +302,7 @@ const Navigation: FC = () => {
|
||
|
<li className="p-side-navigation__item">
|
||
|
<a
|
||
|
className="p-side-navigation__link"
|
||
|
- href="https://github.com/canonical/lxd-ui/issues/new"
|
||
|
+ href="https://github.com/zabbly/incus/issues/new"
|
||
|
target="_blank"
|
||
|
rel="noreferrer"
|
||
|
title="Report a bug"
|
||
|
@@ -314,7 +314,6 @@ const Navigation: FC = () => {
|
||
|
Report a bug
|
||
|
</a>
|
||
|
</li>
|
||
|
- <Version />
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
diff --git a/src/components/NoMatch.tsx b/src/components/NoMatch.tsx
|
||
|
index 8d5270c..bd9e515 100644
|
||
|
--- a/src/components/NoMatch.tsx
|
||
|
+++ b/src/components/NoMatch.tsx
|
||
|
@@ -13,7 +13,7 @@ const NoMatch: FC = () => {
|
||
|
<br />
|
||
|
If you think this is an error in our product, please{" "}
|
||
|
<a
|
||
|
- href="https://github.com/canonical/lxd-ui/issues/new"
|
||
|
+ href="https://github.com/zabbly/incus/issues/new"
|
||
|
target="_blank"
|
||
|
rel="noreferrer"
|
||
|
title="Report a bug"
|
||
|
diff --git a/src/context/useDocs.tsx b/src/context/useDocs.tsx
|
||
|
index 454d98c..90a0de9 100644
|
||
|
--- a/src/context/useDocs.tsx
|
||
|
+++ b/src/context/useDocs.tsx
|
||
|
@@ -1,7 +1,7 @@
|
||
|
import { useSettings } from "context/useSettings";
|
||
|
|
||
|
export const useDocs = (): string => {
|
||
|
- const remoteBase = "https://documentation.ubuntu.com/lxd/en/latest";
|
||
|
+ const remoteBase = "/documentation";
|
||
|
const localBase = "/documentation";
|
||
|
|
||
|
const { data: settings } = useSettings();
|
||
|
--
|
||
|
2.39.2
|
||
|
|