Skip to content

Commit e321fe1

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents ddde913 + 6cb6041 commit e321fe1

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/Foundary/document-edit.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ export function DocumentEdit({
302302
</div>
303303

304304
{/* Content Editor */}
305-
<div className="flex-1 overflow-auto">
305+
<div className="flex-1 ">
306306
<div className="p-8">
307307
<label className="block text-sm font-medium text-foreground mb-4">Content</label>
308308
{editedDocument.format === 'richText' ? (

src/components/Foundary/document-preview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ export function DocumentPreview({
264264
</div>
265265

266266
{/* Content */}
267-
<div className="flex-1 overflow-auto">
267+
<div className="flex-1 ">
268268
<div className="p-8">
269269
{/* Metadata Section */}
270270
{document.metadata && Object.keys(document.metadata).length > 0 && (

src/components/Foundary/knowledge-browser.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ export function KnowledgeBrowser({
329329
</div>
330330

331331
{/* Right Content - Document Preview */}
332-
<div className="flex-1 bg-background">
332+
<div className="flex-1 bg-background overflow-scroll">
333333
{selectedDocument ? (
334334
<DocumentPreview
335335
document={selectedDocument}

0 commit comments

Comments
 (0)