From 015fb4670360b6aa9eec499329fdbc0aa1f8026e Mon Sep 17 00:00:00 2001 From: G4mingJon4s Date: Tue, 13 Sep 2022 17:58:47 +0200 Subject: [PATCH 1/3] Fix for #2442, allowing going forward in tutorial --- src/ui/InteractiveTutorial/InteractiveTutorialRoot.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/InteractiveTutorial/InteractiveTutorialRoot.tsx b/src/ui/InteractiveTutorial/InteractiveTutorialRoot.tsx index dd7f168b1..de7961288 100644 --- a/src/ui/InteractiveTutorial/InteractiveTutorialRoot.tsx +++ b/src/ui/InteractiveTutorial/InteractiveTutorialRoot.tsx @@ -624,7 +624,7 @@ export function InteractiveTutorialRoot(): React.ReactElement { )} - {content.canNext && ( + {(content.canNext || ITutorial.stepIsDone[step]) && ( From c29b4cfda90b4116755355f15f67f2e6d8324529 Mon Sep 17 00:00:00 2001 From: G4mingJon4s Date: Tue, 13 Sep 2022 20:09:58 +0200 Subject: [PATCH 2/3] Fixes #2795, adding better underlines for links --- src/Terminal/ui/TerminalRoot.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Terminal/ui/TerminalRoot.tsx b/src/Terminal/ui/TerminalRoot.tsx index fb2346a0c..7e510f83a 100644 --- a/src/Terminal/ui/TerminalRoot.tsx +++ b/src/Terminal/ui/TerminalRoot.tsx @@ -125,7 +125,7 @@ export function TerminalRoot({ terminal, router, player }: IProps): React.ReactE paragraph={false} onClick={() => terminal.connectToServer(player, item.hostname)} > - {item.hostname} + {item.hostname} )} From 22a35af6b683e94fa450241179689e4352f31daa Mon Sep 17 00:00:00 2001 From: G4mingJon4s Date: Wed, 14 Sep 2022 15:59:55 +0200 Subject: [PATCH 3/3] Added hover style change for better recognition --- src/Terminal/ui/TerminalRoot.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Terminal/ui/TerminalRoot.tsx b/src/Terminal/ui/TerminalRoot.tsx index 7e510f83a..a59ff4703 100644 --- a/src/Terminal/ui/TerminalRoot.tsx +++ b/src/Terminal/ui/TerminalRoot.tsx @@ -125,7 +125,7 @@ export function TerminalRoot({ terminal, router, player }: IProps): React.ReactE paragraph={false} onClick={() => terminal.connectToServer(player, item.hostname)} > - {item.hostname} + {item.hostname} )}