fix: 在行级标签上选择文本时不打开搜索 (#13976)

fix https://github.com/siyuan-note/siyuan/issues/13862
This commit is contained in:
Jeffrey Chen 2025-02-03 17:27:06 +08:00 committed by GitHub
parent f43a10dc27
commit 7f9d00fbf1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2388,7 +2388,7 @@ export class WYSIWYG {
}
const tagElement = hasClosestByAttribute(event.target, "data-type", "tag");
if (tagElement && !event.altKey && !event.shiftKey) {
if (tagElement && !event.altKey && !event.shiftKey && range.toString() === "") {
/// #if !MOBILE
openGlobalSearch(protyle.app, `#${tagElement.textContent}#`, !ctrlIsPressed, {method: 0});
hideElements(["dialog"]);