You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Removed Doc CI, Core CI, and Deploy CI columns
- Added addSpellerTableHeader() with only 4 columns
- Reduced table from 7 to 4 columns: Documentation, Repository, Lemma Count, Issues
// Handle case where GitHub API data is not available
95
116
if(!repos||!Array.isArray(repos)){
96
117
consterrorRow=document.createElement('tr');
97
118
consterrorCell=document.createElement('td');
98
-
errorCell.colSpan=7;// Match number of columns in header
119
+
errorCell.colSpan=4;// Match number of columns in header
99
120
errorCell.innerHTML='<strong>⚠️ GitHub repository data is temporarily unavailable</strong><br><em>This usually resolves automatically. Please try refreshing the page in a few minutes.</em>';
100
121
errorCell.style.textAlign='center';
101
122
errorCell.style.padding='30px 20px';
@@ -121,7 +142,7 @@ function addSpellerRepoTable(repos, mainFilter, filters) {
0 commit comments