Fix vertical scroll in the right panels in workspaces UI (#1925)
This commit is contained in:
@@ -35,7 +35,7 @@ export function CollapsibleSectionHeader({
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={cn('flex flex-col', className)}>
|
<div className={cn('flex flex-col h-full overflow-auto', className)}>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
onClick={() => toggle()}
|
onClick={() => toggle()}
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ export function GitPanel({
|
|||||||
<CollapsibleSectionHeader
|
<CollapsibleSectionHeader
|
||||||
title={t('common:sections.repositories')}
|
title={t('common:sections.repositories')}
|
||||||
persistKey={PERSIST_KEYS.gitPanelRepositories}
|
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">
|
<div className="flex flex-col gap-base">
|
||||||
{repos.map((repo) => (
|
{repos.map((repo) => (
|
||||||
|
|||||||
Reference in New Issue
Block a user