Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/sources/sources-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ export function SourcesView() {
}

return (
<div className="flex h-full flex-col">
<div className="flex h-full min-h-0 flex-col overflow-hidden">
<div className="flex items-center justify-between border-b px-4 py-3">
<h2 className="text-sm font-semibold">{t("sources.title")}</h2>
<div className="flex gap-1">
Expand All @@ -378,7 +378,7 @@ export function SourcesView() {
</div>
</div>

<ScrollArea className="flex-1">
<ScrollArea className="min-h-0 flex-1 overflow-hidden">
{sources.length === 0 ? (
<div className="flex flex-col items-center justify-center gap-3 p-8 text-center text-sm text-muted-foreground">
<p>{t("sources.noSources")}</p>
Expand Down