From f71be25a8e88e0aabc711af7b9f41008d5b56ec9 Mon Sep 17 00:00:00 2001 From: TheGeneralist <180094941+thegeneralist01@users.noreply.github.com> Date: Sat, 4 Jul 2026 11:46:11 +0200 Subject: [PATCH] feat: reorder nav tabs to archive, tags, collections, runs, admin, settings --- frontend/src/App.jsx | 2 +- frontend/src/components/Topbar.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index be14ce8..f81a627 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -16,7 +16,7 @@ import { displayPath } from './utils' export const AuthContext = createContext(null); -const VIEWS = ['archive','runs','admin','tags','collections','settings'] +const VIEWS = ['archive','tags','collections','runs','admin','settings'] const SETTINGS_TABS = ['profile','tokens','instance'] function parseLocation() { diff --git a/frontend/src/components/Topbar.jsx b/frontend/src/components/Topbar.jsx index 888aab7..347f028 100644 --- a/frontend/src/components/Topbar.jsx +++ b/frontend/src/components/Topbar.jsx @@ -23,7 +23,7 @@ export default function Topbar({ archives, archiveId, onArchiveChange, view, onV