From 9284754b94cb732b58bc6e1ae5e3c87438254159 Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Fri, 3 Jul 2026 09:02:00 -0700 Subject: [PATCH] fix: hide bookmarks when switching to scheme mode (#716 regression) --- static/js/app.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/static/js/app.js b/static/js/app.js index d5b26d4ef..1a0c7c9bc 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -1789,16 +1789,19 @@ $(document).ready(function() { $(".connection-scheme-group").show(); $(".connection-standard-group").hide(); $(".connection-ssh-group").hide(); + $(".connection-bookmarks-group").hide(); return; case "standard": $(".connection-scheme-group").hide(); $(".connection-standard-group").show(); $(".connection-ssh-group").hide(); + $(".connection-bookmarks-group").show(); return; case "ssh": $(".connection-scheme-group").hide(); $(".connection-standard-group").show(); $(".connection-ssh-group").show(); + $(".connection-bookmarks-group").show(); return; } });