node about author

This commit is contained in:
StyleZhang
2024-03-08 13:24:32 +08:00
parent 597053c30e
commit 328a3e2e6b
16 changed files with 180 additions and 46 deletions

View File

@ -29,7 +29,7 @@ const BaseNode: FC<BaseNodeProps> = ({
<div
className={`
flex border-[2px] rounded-2xl
${data._selected ? 'border-primary-600' : 'border-transparent'}
${data.selected ? 'border-primary-600' : 'border-transparent'}
`}
>
<div
@ -75,7 +75,7 @@ const BaseNode: FC<BaseNodeProps> = ({
className='shrink-0 mr-2'
type={data.type}
size='md'
icon={data._icon}
toolProviderId={data.provider_id}
/>
<div
title={data.title}