🐛 Clicking the document tag in the graph reports an error https://github.com/siyuan-note/siyuan/issues/12556

This commit is contained in:
Daniel 2024-09-23 23:10:17 +08:00
parent 82590aca3f
commit 43d15c9884
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -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;
}