diff --git a/packages/hoppscotch-app/components/app/Footer.vue b/packages/hoppscotch-app/components/app/Footer.vue index 0f53b0289..e74e2d2dd 100644 --- a/packages/hoppscotch-app/components/app/Footer.vue +++ b/packages/hoppscotch-app/components/app/Footer.vue @@ -4,10 +4,11 @@
- + + +
@@ -168,10 +176,11 @@ export default defineComponent({ }) return { - LEFT_SIDEBAR: useSetting("LEFT_SIDEBAR"), - RIGHT_SIDEBAR: useSetting("RIGHT_SIDEBAR"), + EXPAND_NAVIGATION: useSetting("EXPAND_NAVIGATION"), + SIDEBAR: useSetting("SIDEBAR"), ZEN_MODE: useSetting("ZEN_MODE"), COLUMN_LAYOUT: useSetting("COLUMN_LAYOUT"), + SIDEBAR_ON_LEFT: useSetting("SIDEBAR_ON_LEFT"), navigatorShare: !!navigator.share, @@ -181,7 +190,7 @@ export default defineComponent({ }, watch: { ZEN_MODE() { - this.LEFT_SIDEBAR = !this.ZEN_MODE + this.EXPAND_NAVIGATION = !this.ZEN_MODE }, }, methods: { diff --git a/packages/hoppscotch-app/components/app/Sidenav.vue b/packages/hoppscotch-app/components/app/Sidenav.vue index d9b1b8a5a..bac1a980b 100644 --- a/packages/hoppscotch-app/components/app/Sidenav.vue +++ b/packages/hoppscotch-app/components/app/Sidenav.vue @@ -14,9 +14,9 @@
- {{ navigation.title }} + {{ navigation.title }} - - + +
@@ -60,8 +59,7 @@ - - + +
@@ -127,8 +126,7 @@ - +
diff --git a/packages/hoppscotch-app/components/realtime/Websocket.vue b/packages/hoppscotch-app/components/realtime/Websocket.vue index 1126a2888..ae56aa98e 100644 --- a/packages/hoppscotch-app/components/realtime/Websocket.vue +++ b/packages/hoppscotch-app/components/realtime/Websocket.vue @@ -1,15 +1,14 @@