mirror of
https://github.com/langgenius/dify.git
synced 2026-05-04 16:37:15 +08:00
fix: show index letter problem
This commit is contained in:
parent
83dae7e5bc
commit
d67eb907dd
@ -20,7 +20,7 @@ const Item: FC<Props> = ({
|
|||||||
}) => {
|
}) => {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<div className='flex items-start px-3 h-[22px] text-xs font-medium text-gray-500'>
|
<div className='flex items-center px-3 h-[22px] text-xs font-medium text-gray-500'>
|
||||||
{groupName}
|
{groupName}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
@ -29,7 +29,7 @@ const Item: FC<Props> = ({
|
|||||||
key={tool.id}
|
key={tool.id}
|
||||||
payload={tool}
|
payload={tool}
|
||||||
viewType={ViewType.tree}
|
viewType={ViewType.tree}
|
||||||
isShowLetterIndex
|
isShowLetterIndex={false}
|
||||||
onSelect={onSelect}
|
onSelect={onSelect}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user