From e8ec7c7ff58dcc70f4f582b4ea00ec3e67f5e990 Mon Sep 17 00:00:00 2001 From: Stephen Zhou <38493346+hyoban@users.noreply.github.com> Date: Wed, 29 Apr 2026 17:53:16 +0800 Subject: [PATCH] tweaks --- .../deployments/detail/deploy-tab.tsx | 34 +++++++++++++++---- 1 file changed, 27 insertions(+), 7 deletions(-) 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 && }
)