From d85e2ec5e192c4b0b05090e954727ef297a83cda Mon Sep 17 00:00:00 2001 From: Rob Coenen <753704+rcoenen@users.noreply.github.com> Date: Fri, 31 Jul 2026 01:28:23 -0400 Subject: [PATCH 1/7] feat(app): add a Back to workspace button to the editor header Once a document is opened from the storage workspace there is no way back to it: the only in-app route is Settings -> Cloud storage -> Open workspace, and the desktop shell has no browser back at all. Add an explicit button in the shared header row (rendered on both web and Tauri, unlike the File/Edit menubar below it) that routes to /storage. It is a fixed destination rather than history navigation, so it behaves the same on both platforms. Co-Authored-By: Claude Opus 5 (1M context) --- packages/vue/src/i18n/messages/dialogs.ts | 1 + src/components/Shell/AppMenu.vue | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/packages/vue/src/i18n/messages/dialogs.ts b/packages/vue/src/i18n/messages/dialogs.ts index 58ba6b6a7..de0761902 100644 --- a/packages/vue/src/i18n/messages/dialogs.ts +++ b/packages/vue/src/i18n/messages/dialogs.ts @@ -165,6 +165,7 @@ export const dialogMessageDefaults = { settingsStorage: 'Cloud storage', storageWorkspace: 'Storage workspace', openStorageWorkspace: 'Open workspace', + backToStorageWorkspace: 'Back to workspace', newStoredDocument: 'New document', emptyStorageWorkspace: 'No stored documents yet.', loadingDocuments: 'Loading documents…', diff --git a/src/components/Shell/AppMenu.vue b/src/components/Shell/AppMenu.vue index b7ceacd1f..af4b1a6dc 100644 --- a/src/components/Shell/AppMenu.vue +++ b/src/components/Shell/AppMenu.vue @@ -1,5 +1,6 @@