Fix vertical scroll in the right panels in workspaces UI (#1925)

This commit is contained in:
Anastasiia Solop
2026-01-11 09:21:44 +01:00
committed by GitHub
parent c5554610a9
commit 3d631defb4
2 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ export function CollapsibleSectionHeader({
};
return (
<div className={cn('flex flex-col', className)}>
<div className={cn('flex flex-col h-full overflow-auto', className)}>
<button
type="button"
onClick={() => toggle()}

View File

@@ -59,7 +59,7 @@ export function GitPanel({
<CollapsibleSectionHeader
title={t('common:sections.repositories')}
persistKey={PERSIST_KEYS.gitPanelRepositories}
contentClassName="flex flex-col p-base gap-base"
contentClassName="flex flex-col p-base gap-base overflow-auto"
>
<div className="flex flex-col gap-base">
{repos.map((repo) => (