From 4094fb359babac70e88d0ed4bfe3bd100744aad6 Mon Sep 17 00:00:00 2001 From: Ariel Leyva Date: Sun, 18 Jan 2026 02:37:12 -0500 Subject: [PATCH] fix: retain file selection when closing the editor (#5693) --- frontend/src/views/files/Editor.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/views/files/Editor.vue b/frontend/src/views/files/Editor.vue index 58f0d524..fc5f9728 100644 --- a/frontend/src/views/files/Editor.vue +++ b/frontend/src/views/files/Editor.vue @@ -236,7 +236,6 @@ const close = () => { }; const finishClose = () => { - fileStore.updateRequest(null); const uri = url.removeLastDir(route.path) + "/"; router.push({ path: uri }); };