Skip to content

Commit

Permalink
make work-y tags use the team category in Session
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Sep 7, 2022
1 parent e3f7309 commit ad1937c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Focus.omnijs
Expand Up @@ -26,7 +26,7 @@
if (tag.name == "Wandering Toolmaker") {
defaultCategory = tag.name;
break;
} else if (tag.name == "teams" || (tag.parent && tag.parent.name == "teams")) {
} else if (tag.name == "teams" || (tag.parent && tag.parent.name == "teams") || tag.name == "work" || (tag.parent && tag.parent.name == "work")) {
defaultCategory = "Team";
break;
} else if (tag.name == "personal" || (tag.parent && tag.parent.name == "personal")) {
Expand Down

0 comments on commit ad1937c

Please sign in to comment.