mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-11-30 02:08:37 +08:00
fix: click tool item in app debug page would show detail (#2644)
This commit is contained in:
parent
b07084711c
commit
3f640b1037
@ -35,9 +35,10 @@ const Item: FC<Props> = ({
|
||||
const language = getLanguage(locale)
|
||||
|
||||
const isBuiltIn = collection.type === CollectionType.builtIn
|
||||
const canShowDetail = !isBuiltIn || (isBuiltIn && isInToolsPage)
|
||||
const canShowDetail = isInToolsPage
|
||||
const [showDetail, setShowDetail] = useState(false)
|
||||
const addBtn = <Button className='shrink-0 flex items-center h-7 !px-3 !text-xs !font-medium !text-gray-700' disabled={added || !collection.is_team_authorization} onClick={() => onAdd?.(payload)}>{t(`common.operation.${added ? 'added' : 'add'}`)}</Button>
|
||||
|
||||
return (
|
||||
<>
|
||||
<div
|
||||
|
Loading…
Reference in New Issue
Block a user