diff --git a/app/src/layout/dock/Graph.ts b/app/src/layout/dock/Graph.ts index 95c1f94b6..43faa20f0 100644 --- a/app/src/layout/dock/Graph.ts +++ b/app/src/layout/dock/Graph.ts @@ -540,6 +540,10 @@ export class Graph extends Model { case "NodeSuperBlock": item.color = {background: rootStyle.getPropertyValue("--b3-graph-super-point").trim()}; break; + case "tag": + case "textmark tag": + item.color = {background: rootStyle.getPropertyValue("--b3-graph-tag-point").trim()}; + break; default: item.color = {background: rootStyle.getPropertyValue("--b3-graph-p-point").trim()}; break; @@ -658,7 +662,7 @@ export class Graph extends Model { if (!node) { return; } - if (node.type === "textmark tag") { + if (-1 < node.type.indexOf("tag")) { openGlobalSearch(this.app, `#${node.id}#`, !window.siyuan.ctrlIsPressed); return; }