Skip to content

Commit

Permalink
tab counter update
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanbataire committed May 17, 2024
1 parent 9e7f5b3 commit c67e457
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/liquid/place/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ <h2>{{contactType.friendly}}</h2>
const table = tableID && document.getElementById(tableID);
if (table) {
const rowCount = table.rows.length - 1;
link.querySelector('span').innerText = rowCount;
link.querySelector('span').innerText = rowCount > 999 ? '999+' : rowCount;
}
})
}
Expand Down
Loading

0 comments on commit c67e457

Please sign in to comment.