+ setTagView: function () {
+ const target = this.currentTag();
+ if (!target) return;
+ const tag = target.textContent!;
+ for (const task of document.getElementsByClassName("task")) {
+ if (Model.hasTag(task, tag)) {
+ task.classList.remove("hide");
+ } else {
+ task.classList.add("hide");
+ }
+ }
+ currentTagView = tag;
+ },
+