统一创建:输入框默认placeholder

This commit is contained in:
北枳 2025-10-21 19:18:16 +08:00
parent 73876891f9
commit 7406d2aceb

View File

@ -381,7 +381,7 @@ export default function VideoCreationForm() {
<textarea <textarea
data-alt="main-text-input" data-alt="main-text-input"
className="w-full h-full bg-transparent text-gray-300 text-base placeholder-gray-500 resize-none outline-none border-none" className="w-full h-full bg-transparent text-gray-300 text-base placeholder-gray-500 resize-none outline-none border-none"
placeholder={inputPlaceholder || "Share a topic, idea, or instructions with Video Agent to produce a full avatar video"} placeholder={inputPlaceholder || "Describe the story you want to make..."}
value={inputText} value={inputText}
onChange={(e) => setInputText(e.target.value)} onChange={(e) => setInputText(e.target.value)}
/> />