From 43aa38a30343146cec89cf98cdabb27a95fde1e4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=8C=97=E6=9E=B3?=
<7854742+wang_rumeng@user.noreply.gitee.com>
Date: Tue, 23 Sep 2025 15:08:52 +0800
Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E6=8E=89=20noindex=20=E4=BB=A5?=
=?UTF-8?q?=E5=8F=8A=20auto=20=E5=AD=97=E6=A0=B7?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app/layout.tsx | 1 -
components/ChatInputBox/ChatInputBox.tsx | 4 ++--
components/pages/work-flow.tsx | 1 -
components/pages/work-flow/H5MediaViewer.tsx | 1 -
4 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/app/layout.tsx b/app/layout.tsx
index 3b449f8..db5e91e 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -43,7 +43,6 @@ export default function RootLayout({
MovieFlow - AI Movie Studio
-
diff --git a/components/ChatInputBox/ChatInputBox.tsx b/components/ChatInputBox/ChatInputBox.tsx
index 04e9b39..5fa4d55 100644
--- a/components/ChatInputBox/ChatInputBox.tsx
+++ b/components/ChatInputBox/ChatInputBox.tsx
@@ -73,7 +73,7 @@ const VideoDurationOptions = [
{ value: "8s", label: "8s" },
{ value: "1min", label: "1min" },
{ value: "2min", label: "2min" },
- { value: "unlimited", label: "unlimited" },
+ { value: "unlimited", label: "auto" },
];
// aspect ratio options moved to reusable component
@@ -464,7 +464,7 @@ export function ChatInputBox({ noData }: { noData: boolean }) {
className={`flex items-center gap-1 text-white/80 transition-all duration-200 ${isMobile ? 'px-1' : 'px-2'} py-2`}
>
- {isMobile ? (configOptions.videoDuration === 'unlimited' ? '∞' : configOptions.videoDuration.replace('min', 'm')) : configOptions.videoDuration}
+ {configOptions.videoDuration === 'unlimited' ? 'auto' : (isMobile ? configOptions.videoDuration.replace('min', 'm') : configOptions.videoDuration)}
diff --git a/components/pages/work-flow.tsx b/components/pages/work-flow.tsx
index 8f66dc7..1612c97 100644
--- a/components/pages/work-flow.tsx
+++ b/components/pages/work-flow.tsx
@@ -471,7 +471,6 @@ Please process this video editing request.`;
alt="final"
className="w-full h-auto object-cover"
/>
- Final
)}
diff --git a/components/pages/work-flow/H5MediaViewer.tsx b/components/pages/work-flow/H5MediaViewer.tsx
index 42e4655..51da617 100644
--- a/components/pages/work-flow/H5MediaViewer.tsx
+++ b/components/pages/work-flow/H5MediaViewer.tsx
@@ -417,7 +417,6 @@ export function H5MediaViewer({
aria-label="Select final video"
>
- Final
)}