Fix UI component height

This commit is contained in:
Adityavardhan Agrawal 2025-05-01 17:33:47 -07:00
parent 5538b4787a
commit 6cc4a9377e
2 changed files with 4 additions and 4 deletions

View File

@ -57,11 +57,11 @@ const MorphikUI: React.FC<MorphikUIProps> = ({
return (
<>
<div className="flex h-screen">
<div className="flex h-full">
<Sidebar
activeSection={activeSection}
onSectionChange={setActiveSection}
className="h-screen"
className="h-full"
connectionUri={currentUri}
isReadOnlyUri={isReadOnlyUri}
onUriChange={handleUriChange}
@ -70,7 +70,7 @@ const MorphikUI: React.FC<MorphikUIProps> = ({
onBackClick={onBackClick}
/>
<div className="flex-1 flex flex-col h-screen overflow-hidden">
<div className="flex-1 flex flex-col h-full overflow-hidden">
{/* Remove the header with back button */}
<div className="flex-1 overflow-y-auto">
{/* Documents Section */}

View File

@ -1,6 +1,6 @@
{
"name": "@morphik/ui",
"version": "0.2.0",
"version": "0.2.2",
"private": true,
"description": "Modern UI component for Morphik - A powerful document processing and querying system",
"author": "Morphik Team",