From 9643fa1c9ab4e6dbe6b0ef704b7c843524571640 Mon Sep 17 00:00:00 2001 From: lyzno1 Date: Thu, 2 Oct 2025 09:56:51 +0800 Subject: [PATCH] fix: use StopCircle icon in variable inspect listening panel --- web/app/components/workflow/variable-inspect/listening.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/app/components/workflow/variable-inspect/listening.tsx b/web/app/components/workflow/variable-inspect/listening.tsx index d571663282..68d6f21d23 100644 --- a/web/app/components/workflow/variable-inspect/listening.tsx +++ b/web/app/components/workflow/variable-inspect/listening.tsx @@ -1,9 +1,9 @@ import type { FC } from 'react' import { useTranslation } from 'react-i18next' -import { RiStopLargeLine } from '@remixicon/react' import Button from '@/app/components/base/button' import BlockIcon from '@/app/components/workflow/block-icon' import { BlockEnum } from '@/app/components/workflow/types' +import { StopCircle } from '@/app/components/base/icons/src/vender/line/mediaAndDevices' export type ListeningProps = { onStop: () => void @@ -32,7 +32,7 @@ const Listening: FC = ({ variant='primary' onClick={onStop} > - + {t('workflow.debug.variableInspect.listening.stopButton')}