Skip to content
Merged
Show file tree
Hide file tree
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 frontend/src/components/pages/rp-connect/pipeline/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ function EditorPanel({
}) {
return (
<ResizablePanelGroup orientation="vertical">
<ResizablePanel defaultSize={70} minSize={30}>
<ResizablePanel defaultSize="70%" minSize="30%">
<div className="relative h-full">
{isServerlessInitializing ? (
<EditorSkeleton />
Expand Down Expand Up @@ -636,7 +636,7 @@ function EditorPanel({
</div>
</ResizablePanel>
<ResizableHandle withHandle />
<ResizablePanel collapsible defaultSize={30}>
<ResizablePanel collapsible defaultSize="30%">
<div className="h-full overflow-auto p-4">
<div className="mb-3 flex items-center gap-2">
<Heading className="text-muted-foreground" level={5}>
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/components/pages/sql/sql-workspace.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -680,13 +680,13 @@ export function SqlWorkspace({ sqlRole: sqlRoleProp }: SqlWorkspaceProps) {
<ResizablePanelGroup className="min-w-0 flex-1" orientation="vertical">
<ResizablePanel
className="flex min-h-0 bg-background [&>*]:min-w-0 [&>*]:flex-1"
defaultSize={42}
minSize={15}
defaultSize="42%"
minSize="15%"
>
<SqlEditor catalogs={completionCatalogs} initialQuery={INITIAL_QUERY} onRun={doRun} ref={editorRef} />
</ResizablePanel>
<ResizableHandle withHandle />
<ResizablePanel className="flex min-h-0 bg-background [&>*]:min-w-0 [&>*]:flex-1" minSize={20}>
<ResizablePanel className="flex min-h-0 bg-background [&>*]:min-w-0 [&>*]:flex-1" minSize="20%">
<SqlResults
hasTables={hasTables}
onAddTable={openWizard}
Expand Down
Loading