From ad681c7a7393cd409121747ca43b4bb585d5f38a Mon Sep 17 00:00:00 2001 From: Marius Mutu Date: Sat, 25 Apr 2026 22:19:07 +0000 Subject: [PATCH] fix(dashboard): align swipe-nav order with menu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Swipe stânga/dreapta urmează acum ordinea tab-urilor: Dashboard → Workspace → KB → Habits → Files. Co-Authored-By: Claude Opus 4.7 (1M context) --- dashboard/swipe-nav.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/swipe-nav.js b/dashboard/swipe-nav.js index 2c3b1ec..c5ccbaa 100644 --- a/dashboard/swipe-nav.js +++ b/dashboard/swipe-nav.js @@ -3,7 +3,7 @@ * Swipe left/right to navigate between pages */ (function() { - const pages = ['index.html', 'notes.html', 'habits.html', 'files.html', 'workspace.html']; + const pages = ['index.html', 'workspace.html', 'notes.html', 'habits.html', 'files.html']; // Get current page index function getCurrentIndex() {