fix(web-editor): avoid file picker on editor focus

This commit is contained in:
2026-04-05 23:21:45 +08:00
parent 5d71f3b527
commit fab72906c9
+3 -3
View File
@@ -382,8 +382,8 @@ export function TodoShellPage({ session }: TodoShellPageProps) {
/> />
</label> </label>
<label className="block text-sm text-muted-foreground"> <div className="block text-sm text-muted-foreground">
<p></p>
<div className="mt-1"> <div className="mt-1">
<TaskRichEditor <TaskRichEditor
valueJson={formState.contentJson} valueJson={formState.contentJson}
@@ -397,7 +397,7 @@ export function TodoShellPage({ session }: TodoShellPageProps) {
} }
/> />
</div> </div>
</label> </div>
</div> </div>
)} )}