From ad1937c0e4e4abf140b3a2ebca22c6216fdc8587 Mon Sep 17 00:00:00 2001 From: Brian Hicks Date: Wed, 7 Sep 2022 07:53:32 -0500 Subject: [PATCH] make work-y tags use the team category in Session --- Focus.omnijs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Focus.omnijs b/Focus.omnijs index 524eda7..67dd857 100644 --- a/Focus.omnijs +++ b/Focus.omnijs @@ -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")) {