From 3ce6b43018cada9a502865451e9ebbf57680e29d Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 13 Sep 2025 09:18:52 +0300 Subject: [PATCH] feat(react/collections/board): disable autofill when entering note title --- apps/client/src/widgets/collections/board/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/client/src/widgets/collections/board/index.tsx b/apps/client/src/widgets/collections/board/index.tsx index 2e77069fc..3b623f7cb 100644 --- a/apps/client/src/widgets/collections/board/index.tsx +++ b/apps/client/src/widgets/collections/board/index.tsx @@ -246,6 +246,7 @@ export function TitleEditor({ currentValue, placeholder, save, dismiss, multilin inputRef={inputRef} currentValue={currentValue ?? ""} placeholder={placeholder} + autoComplete="trilium-title-entry" // forces the auto-fill off better than the "off" value. rows={multiline ? 4 : undefined} onKeyDown={(e: JSX.TargetedKeyboardEvent) => { if (e.key === "Enter") {