diff --git a/web/features/deployments/detail/deploy-tab.tsx b/web/features/deployments/detail/deploy-tab.tsx index f93817363a..c7bd59ae49 100644 --- a/web/features/deployments/detail/deploy-tab.tsx +++ b/web/features/deployments/detail/deploy-tab.tsx @@ -1,5 +1,5 @@ 'use client' -import type { FC } from 'react' +import type { FC, KeyboardEvent } from 'react' import { Button } from '@langgenius/dify-ui/button' import { cn } from '@langgenius/dify-ui/cn' import { @@ -154,7 +154,11 @@ const DeployTab: FC = ({ instanceId: appId }) => { const status = deploymentStatus(row) const release = activeRelease(row) const actions = ( -
e.stopPropagation()}> +
e.stopPropagation()} + onKeyDown={e => e.stopPropagation()} + > +
{isExpanded && }
)