Merge "Do not show file-ownership information for MAGIC files."
diff --git a/web/owner-status-column.ts b/web/owner-status-column.ts
index 66c572c..d8b9f8f 100644
--- a/web/owner-status-column.ts
+++ b/web/owner-status-column.ts
@@ -254,7 +254,8 @@
     if (
       this.computeHidden() ||
       this.status === undefined ||
-      this.path === '/COMMIT_MSG'
+      !this.path || 
+      MAGIC_FILES.includes(this.path)
     )
       return nothing;
     return html`${this.renderStatus()}${this.renderOwnership()}`;