mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-07-11 00:33:40 +00:00
style: move sql display below expansion input output section
This commit is contained in:
parent
c8dffd3f07
commit
ac11c99f8e
1 changed files with 5 additions and 5 deletions
|
|
@ -199,11 +199,6 @@ export default function ToolCall({
|
|||
error={cancelled}
|
||||
/>
|
||||
</div>
|
||||
{parsedQuery && (
|
||||
<div className="clickhouse-codeblock my-2">
|
||||
<CodeBlock language="sql">{parsedQuery}</CodeBlock>
|
||||
</div>
|
||||
)}
|
||||
<div
|
||||
className="relative"
|
||||
style={{
|
||||
|
|
@ -246,6 +241,11 @@ export default function ToolCall({
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{parsedQuery && (
|
||||
<div className="clickhouse-codeblock my-2">
|
||||
<CodeBlock language="sql">{parsedQuery}</CodeBlock>
|
||||
</div>
|
||||
)}
|
||||
{auth != null && auth && progress < 1 && !cancelled && (
|
||||
<div className="flex w-full flex-col gap-2.5">
|
||||
<div className="mb-1 mt-2">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue