From 7e8a26f2308f26315db44a3abcff6da16aa90168 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Fri, 16 Jan 2026 22:34:22 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/14863 --- app/src/protyle/hint/extend.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/src/protyle/hint/extend.ts b/app/src/protyle/hint/extend.ts index af1044850..9c281f0f1 100644 --- a/app/src/protyle/hint/extend.ts +++ b/app/src/protyle/hint/extend.ts @@ -392,6 +392,9 @@ export const hintTag = (key: string, protyle: IProtyle): IHintData[] => { fetchPost("/api/search/searchTag", { k: key, }, (response) => { + if (protyle.hint.element.classList.contains("fn__none")) { + return; + } const dataList: IHintData[] = []; let hasKey = false; response.data.tags.forEach((item: string) => {