From 344844d3e0d2dd45b6fb8d72f0a03633f5fcce6e Mon Sep 17 00:00:00 2001 From: Joel Date: Thu, 23 Oct 2025 16:53:10 +0800 Subject: [PATCH] chore: handle data is large --- .../explore/try-app/app-info/index.tsx | 34 +++++++++++++++++-- web/app/components/explore/try-app/index.tsx | 4 +-- 2 files changed, 34 insertions(+), 4 deletions(-) diff --git a/web/app/components/explore/try-app/app-info/index.tsx b/web/app/components/explore/try-app/app-info/index.tsx index 1e40bfe56c..9e26e687d4 100644 --- a/web/app/components/explore/try-app/app-info/index.tsx +++ b/web/app/components/explore/try-app/app-info/index.tsx @@ -6,12 +6,16 @@ import { AppTypeIcon } from '@/app/components/app/type-selector' import { useTranslation } from 'react-i18next' import type { TryAppInfo } from '@/service/try-app' import cn from '@/utils/classnames' +import Button from '@/app/components/base/button' +import { RiAddLine } from '@remixicon/react' type Props = { appDetail: TryAppInfo className?: string } +const headerClassName = 'system-sm-semibold-uppercase text-text-secondary mb-3' + const AppInfo: FC = ({ className, appDetail, @@ -19,9 +23,9 @@ const AppInfo: FC = ({ const { t } = useTranslation() const mode = appDetail?.mode return ( -
+
{/* name and icon */} -
+
= ({
+
+ A workflow designed to translate a full book up to 15000 tokens per run. Uses Code node to separate text into chunks +
+ + +
+
Category
+
AI Coding
+
+ +
+
Requirements
+
+
+
+
LLM Vision supported
+
+
+
+
xxx
+
+
+
) } diff --git a/web/app/components/explore/try-app/index.tsx b/web/app/components/explore/try-app/index.tsx index 10da61b772..e5dfd0ca76 100644 --- a/web/app/components/explore/try-app/index.tsx +++ b/web/app/components/explore/try-app/index.tsx @@ -48,9 +48,9 @@ const TryApp: FC = ({
{/* Main content */} -
+
{type === TypeEnum.TRY ? : } - +
)}