Skip to content

Commit

Permalink
fix: subtag of PARA notes
Browse files Browse the repository at this point in the history
  • Loading branch information
linyibing committed Apr 3, 2024
1 parent 5c508b8 commit b05a6a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/periodic/Bullet.ts
Expand Up @@ -62,7 +62,7 @@ export class Bullet {
let includeTag = false;
if (L.task || L.path === filepath) return false;
for (const tag of tags) {
includeTag = L.tags.includes(`#${tag}`);
includeTag = L.tags.join(' ').includes(`#${tag}`);
if (includeTag) {
break;
}
Expand Down

0 comments on commit b05a6a6

Please sign in to comment.