From b089982530639d17c7e848d77997f39418e4fd15 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Sat, 18 Oct 2025 21:40:10 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/16099 --- app/src/mobile/dock/MobileTags.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/app/src/mobile/dock/MobileTags.ts b/app/src/mobile/dock/MobileTags.ts index c54aad242..9854570ae 100644 --- a/app/src/mobile/dock/MobileTags.ts +++ b/app/src/mobile/dock/MobileTags.ts @@ -5,6 +5,7 @@ import {MenuItem} from "../../menus/Menu"; import {popSearch} from "../menu/search"; import {App} from "../../index"; import {openTagMenu} from "../../menus/tag"; +import {Constants} from "../../constants"; export class MobileTags { public element: HTMLElement; @@ -128,13 +129,15 @@ export class MobileTags { target = target.parentElement; } }); - this.update(); + this.update(false); } - public update() { + public update(ignoreMaxListHint = true) { this.element.lastElementChild.classList.remove("fn__none"); fetchPost("/api/tag/getTag", { - sort: window.siyuan.config.tag.sort + sort: window.siyuan.config.tag.sort, + app: Constants.SIYUAN_APPID, + ignoreMaxListHint, }, response => { if (this.openNodes) { this.openNodes = this.tree.getExpandIds();