mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-25 20:02:47 +00:00
Var render (#5248)
Some checks are pending
Build FastGPT images in Personal warehouse / get-vars (push) Waiting to run
Build FastGPT images in Personal warehouse / build-fastgpt-images (map[arch:amd64 runs-on:ubuntu-24.04]) (push) Blocked by required conditions
Build FastGPT images in Personal warehouse / build-fastgpt-images (map[arch:arm64 runs-on:ubuntu-24.04-arm]) (push) Blocked by required conditions
Build FastGPT images in Personal warehouse / release-fastgpt-images (push) Blocked by required conditions
Some checks are pending
Build FastGPT images in Personal warehouse / get-vars (push) Waiting to run
Build FastGPT images in Personal warehouse / build-fastgpt-images (map[arch:amd64 runs-on:ubuntu-24.04]) (push) Blocked by required conditions
Build FastGPT images in Personal warehouse / build-fastgpt-images (map[arch:arm64 runs-on:ubuntu-24.04-arm]) (push) Blocked by required conditions
Build FastGPT images in Personal warehouse / release-fastgpt-images (push) Blocked by required conditions
* add resize to json editor * fix: ts
This commit is contained in:
parent
0d0bf06307
commit
530f30e3e8
|
|
@ -128,7 +128,7 @@ const InputRender = (props: InputRenderProps) => {
|
|||
}
|
||||
|
||||
if (inputType === InputTypeEnum.JSONEditor) {
|
||||
return <JSONEditor {...commonProps} />;
|
||||
return <JSONEditor {...commonProps} resize />;
|
||||
}
|
||||
|
||||
if (inputType === InputTypeEnum.selectLLMModel) {
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ const VariablePopover = ({
|
|||
}
|
||||
>
|
||||
{({ onClose }) => (
|
||||
<Box p={4} maxH={'60vh'}>
|
||||
<Box p={4} maxH={'60vh'} overflow={'auto'}>
|
||||
{hasExternalVariable && (
|
||||
<Box textAlign={'left'}>
|
||||
<Flex
|
||||
|
|
|
|||
Loading…
Reference in New Issue