chore: type picker

This commit is contained in:
Joel 2024-03-29 16:32:36 +08:00
parent 950a52f4fc
commit 636603d5af
2 changed files with 1 additions and 9 deletions

View File

@ -50,19 +50,12 @@ const Editor: FC<Props> = ({
placeholder={placeholder}
placeholderClassName={placeholderClassName}
value={value}
outToolDisabled
canNotAddContext
contextBlock={{
show: false,
selectable: false,
datasets: [],
onAddContext: () => { },
}}
variableBlock={{
variables: [],
externalTools: [],
onAddExternalTool: () => { },
}}
historyBlock={{
show: false,
selectable: false,
@ -78,7 +71,6 @@ const Editor: FC<Props> = ({
}}
workflowVariableBlock={{
show: true,
selectable: true,
variables: nodesOutputVars || [],
getWorkflowNode: getNode,
}}

View File

@ -58,7 +58,7 @@ const ApiInput: FC<Props> = ({
onChange={onMethodChange}
options={MethodOptions}
trigger={
<div className={cn(readonly && 'cursor-pointer', 'h-8 shrink-0 flex items-center px-2.5 border-r border-black/5')} >
<div className={cn(readonly && 'cursor-pointer', 'h-8 shrink-0 flex items-center px-2.5 bg-gray-100 border-black/5 rounded-lg')} >
<div className='w-12 pl-0.5 leading-[18px] text-xs font-medium text-gray-900 uppercase'>{method}</div>
{!readonly && <ChevronDown className='ml-1 w-3.5 h-3.5 text-gray-700' />}
</div>