UI: Add indicator of RFA connection status to overview panel (#2497)

This commit is contained in:
catloversg
2026-02-25 03:11:20 +07:00
committed by GitHub
parent c85d9cbe8c
commit 144fd50774
13 changed files with 122 additions and 63 deletions
+2 -2
View File
@@ -181,7 +181,7 @@ export function SidebarRoot(props: { page: Page }): React.ReactElement {
const clickPage = useCallback(
(page: Page) => {
if (page == Page.ScriptEditor || page == Page.Documentation) {
if (page == Page.ScriptEditor || page == Page.Documentation || page == Page.Options) {
Router.toPage(page, {});
} else if (isSimplePage(page)) {
Router.toPage(page);
@@ -212,7 +212,7 @@ export function SidebarRoot(props: { page: Page }): React.ReactElement {
case SimplePage.Milestones:
case ComplexPage.Documentation:
case SimplePage.Achievements:
case SimplePage.Options:
case ComplexPage.Options:
return true;
case SimplePage.StaneksGift:
return canStaneksGift;