Skip to content

Commit

Permalink
deploy: d3ee475
Browse files Browse the repository at this point in the history
  • Loading branch information
snomos committed Oct 23, 2023
1 parent e1c4b5d commit 3623763
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CorpusResources.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ This page contains a dynamically built list of all corpus repositories. Private

<script>
const domProdLangs = document.querySelector('#corp_languges');
domProdLangs.appendChild(addRepoTable({{lang_repos}}, 'corpus-', ['']))
domProdLangs.appendChild(addRepoTable({{lang_repos}}, 'corpus-', []))
</script>

<!-- Scripts for Geographic areas: -->
Expand Down
2 changes: 1 addition & 1 deletion assets/js/langtable.js
Original file line number Diff line number Diff line change
Expand Up @@ -8087,7 +8087,7 @@ function addRepoTable(repos, mainFilter, filters) {
const empty_row = document.createElement('tr')
const empty_cell = document.createElement('td')
empty_cell.appendChild(document.createTextNode('— No repos found. —'))
empty_cell.setAttribute('colspan', '5');
empty_cell.setAttribute('colspan', '6');
empty_cell.setAttribute('style', 'text-align: center;');
empty_row.appendChild(empty_cell);
tbody.appendChild(empty_row);
Expand Down

0 comments on commit 3623763

Please sign in to comment.