From 229757bef9a92ae6309f63751fc5476c9073ec02 Mon Sep 17 00:00:00 2001 From: Timothy Carambat Date: Fri, 9 Feb 2024 11:44:33 -0800 Subject: [PATCH] Fix sidebar hiding options on small height viewport (#704) --- frontend/src/components/SettingsSidebar/index.jsx | 4 ++-- .../DataConnectors/Connectors/Github/index.jsx | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/SettingsSidebar/index.jsx b/frontend/src/components/SettingsSidebar/index.jsx index 63f2efd9..ea488711 100644 --- a/frontend/src/components/SettingsSidebar/index.jsx +++ b/frontend/src/components/SettingsSidebar/index.jsx @@ -106,7 +106,7 @@ export default function SettingsSidebar() { {/* Primary Body */} -
+
@@ -154,7 +154,7 @@ export default function SettingsSidebar() { Settings
{/* Primary Body */} -
+
{/* Options */}
diff --git a/frontend/src/pages/GeneralSettings/DataConnectors/Connectors/Github/index.jsx b/frontend/src/pages/GeneralSettings/DataConnectors/Connectors/Github/index.jsx index 7fa77ce7..b8be6e65 100644 --- a/frontend/src/pages/GeneralSettings/DataConnectors/Connectors/Github/index.jsx +++ b/frontend/src/pages/GeneralSettings/DataConnectors/Connectors/Github/index.jsx @@ -46,7 +46,8 @@ export default function GithubConnectorSetup() { } showToast( - `${data.files} ${pluralize("file", data.files)} collected from ${data.author + `${data.files} ${pluralize("file", data.files)} collected from ${ + data.author }/${data.repo}:${data.branch}. Output folder is ${data.destination}.`, "success", { clear: true }