From c581378c3bb74f9e6c3c07da4cd6cfd640203d1f Mon Sep 17 00:00:00 2001 From: Scott Wilson Date: Fri, 14 Nov 2025 14:37:00 -0800 Subject: [PATCH 1/7] fix: always display org nav bar --- .../OrganizationLayout/components/OrgNavBar/OrgNavBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/layouts/OrganizationLayout/components/OrgNavBar/OrgNavBar.tsx b/frontend/src/layouts/OrganizationLayout/components/OrgNavBar/OrgNavBar.tsx index 564970904..16dbe5a13 100644 --- a/frontend/src/layouts/OrganizationLayout/components/OrgNavBar/OrgNavBar.tsx +++ b/frontend/src/layouts/OrganizationLayout/components/OrgNavBar/OrgNavBar.tsx @@ -21,7 +21,7 @@ export const OrgNavBar = ({ isHidden }: Props) => { return ( <> {!isHidden && ( -
+
Date: Fri, 14 Nov 2025 14:48:39 -0800 Subject: [PATCH 2/7] style: make navbar more responsive to allow navigation on smaller devices --- .../OrganizationLayout/components/NavBar/Navbar.tsx | 12 ++++++------ .../components/ProjectSelect/ProjectSelect.tsx | 4 +++- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/frontend/src/layouts/OrganizationLayout/components/NavBar/Navbar.tsx b/frontend/src/layouts/OrganizationLayout/components/NavBar/Navbar.tsx index 3fb909c9b..4025ecc17 100644 --- a/frontend/src/layouts/OrganizationLayout/components/NavBar/Navbar.tsx +++ b/frontend/src/layouts/OrganizationLayout/components/NavBar/Navbar.tsx @@ -294,7 +294,7 @@ export const Navbar = () => { ) : ( <> -
+
{ {currentOrg?.name} -
+
{getPlan(subscription)}
{subscription.cardDeclined && ( @@ -468,7 +468,7 @@ export const Navbar = () => { className={twMerge( "gap-x-1.5 text-sm", !isOrgScope && - "bg-transparent text-mineshaft-200 hover:!bg-transparent hover:underline [&>svg]:!text-sub-org" + "min-w-6 bg-transparent text-mineshaft-200 hover:!bg-transparent hover:underline [&>svg]:!text-sub-org" )} > @@ -569,11 +569,11 @@ export const Navbar = () => { )} {user.superAdmin && !location.pathname.startsWith("/admin") && ( - - Server Console + + Server Console )} diff --git a/frontend/src/layouts/ProjectLayout/components/ProjectSelect/ProjectSelect.tsx b/frontend/src/layouts/ProjectLayout/components/ProjectSelect/ProjectSelect.tsx index dcb50b5d2..08fdceb58 100644 --- a/frontend/src/layouts/ProjectLayout/components/ProjectSelect/ProjectSelect.tsx +++ b/frontend/src/layouts/ProjectLayout/components/ProjectSelect/ProjectSelect.tsx @@ -106,7 +106,9 @@ export const ProjectSelect = () => {

- {currentWorkspace.type ? PROJECT_TYPE_NAME[currentWorkspace.type] : "Project"} + + {currentWorkspace.type ? PROJECT_TYPE_NAME[currentWorkspace.type] : "Project"} + From a236d3e318ef5d7560fdf3b7fcd04601d5114e69 Mon Sep 17 00:00:00 2001 From: Scott Wilson Date: Fri, 14 Nov 2025 14:51:34 -0800 Subject: [PATCH 3/7] fix: remove hidden breakpoint on kms layout --- frontend/src/layouts/KmsLayout/KmsLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/layouts/KmsLayout/KmsLayout.tsx b/frontend/src/layouts/KmsLayout/KmsLayout.tsx index c4fdf32eb..eef78000a 100644 --- a/frontend/src/layouts/KmsLayout/KmsLayout.tsx +++ b/frontend/src/layouts/KmsLayout/KmsLayout.tsx @@ -13,7 +13,7 @@ export const KmsLayout = () => { const location = useLocation(); return ( -
+
Date: Fri, 14 Nov 2025 14:54:00 -0800 Subject: [PATCH 4/7] fix: remove hidden breakpoint on ssh layout --- frontend/src/layouts/SshLayout/SshLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/layouts/SshLayout/SshLayout.tsx b/frontend/src/layouts/SshLayout/SshLayout.tsx index 5b0d79b75..4496a76b4 100644 --- a/frontend/src/layouts/SshLayout/SshLayout.tsx +++ b/frontend/src/layouts/SshLayout/SshLayout.tsx @@ -18,7 +18,7 @@ export const SshLayout = () => { const location = useLocation(); return ( -
+
Date: Fri, 14 Nov 2025 14:56:44 -0800 Subject: [PATCH 5/7] fix: remove hidden breakpoint on secret scanning layout --- .../src/layouts/SecretScanningLayout/SecretScanningLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/layouts/SecretScanningLayout/SecretScanningLayout.tsx b/frontend/src/layouts/SecretScanningLayout/SecretScanningLayout.tsx index 0a1fd14f4..3a060b68a 100644 --- a/frontend/src/layouts/SecretScanningLayout/SecretScanningLayout.tsx +++ b/frontend/src/layouts/SecretScanningLayout/SecretScanningLayout.tsx @@ -36,7 +36,7 @@ export const SecretScanningLayout = () => { ); return ( -
+
Date: Fri, 14 Nov 2025 15:00:14 -0800 Subject: [PATCH 6/7] style: allow label wrapping on sm settings page for responsive support --- .../components/SecretSharingSection/SecretSharingSection.tsx | 3 ++- .../SecretSnapshotsLegacySection.tsx | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/secret-manager/SettingsPage/components/SecretSharingSection/SecretSharingSection.tsx b/frontend/src/pages/secret-manager/SettingsPage/components/SecretSharingSection/SecretSharingSection.tsx index ac1f735f9..9b611100f 100644 --- a/frontend/src/pages/secret-manager/SettingsPage/components/SecretSharingSection/SecretSharingSection.tsx +++ b/frontend/src/pages/secret-manager/SettingsPage/components/SecretSharingSection/SecretSharingSection.tsx @@ -40,12 +40,13 @@ export const SecretSharingSection = () => {

Allow Secret Sharing

{(isAllowed) => ( -
+
handleToggle(state as boolean)} + allowMultilineLabel > This feature enables your project members to securely share secrets. diff --git a/frontend/src/pages/secret-manager/SettingsPage/components/SecretSnapshotsLegacySection/SecretSnapshotsLegacySection.tsx b/frontend/src/pages/secret-manager/SettingsPage/components/SecretSnapshotsLegacySection/SecretSnapshotsLegacySection.tsx index 466b950f1..01c95f68f 100644 --- a/frontend/src/pages/secret-manager/SettingsPage/components/SecretSnapshotsLegacySection/SecretSnapshotsLegacySection.tsx +++ b/frontend/src/pages/secret-manager/SettingsPage/components/SecretSnapshotsLegacySection/SecretSnapshotsLegacySection.tsx @@ -40,12 +40,13 @@ export const SecretSnapshotsLegacySection = () => {

Show Secret Snapshots ( legacy )

{(isAllowed) => ( -
+
handleToggle(state as boolean)} + allowMultilineLabel > This feature enables your project members to view secret snapshots in the legacy format. From 99431c6c800ecceaa4f0b840f8111c018b9f81e4 Mon Sep 17 00:00:00 2001 From: Scott Wilson Date: Fri, 14 Nov 2025 15:54:10 -0800 Subject: [PATCH 7/7] fix: remove hidden breakpoint on pam layout --- frontend/src/layouts/PamLayout/PamLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/layouts/PamLayout/PamLayout.tsx b/frontend/src/layouts/PamLayout/PamLayout.tsx index c6e7e067a..743507100 100644 --- a/frontend/src/layouts/PamLayout/PamLayout.tsx +++ b/frontend/src/layouts/PamLayout/PamLayout.tsx @@ -28,7 +28,7 @@ export const PamLayout = () => { return ( <> -
+