diff --git a/apps/static/js/table.js b/apps/static/js/table.js
index 6154536..9c607ed 100644
--- a/apps/static/js/table.js
+++ b/apps/static/js/table.js
@@ -321,7 +321,7 @@ function createTableControls(containingSelector, pageSizeId) {
@@ -382,7 +382,7 @@ function updateTableContainer(containerId, page, pageSize, itemsCount, totalItem
// Updates the pagination text for a given pageInfoId
function updateTablePaginationInfo(pageInfoId, showing, total) {
$(`${pageInfoId} .pageinfo-showing`).text(showing);
- $(`${pageInfoId} .pageinfo-total`).text(total);
+ $(`${pageInfoId} .pageinfo-total`).text(`${total} Result${total > 1 ? "s" : ""}`);
}
// Updates the pagination buttons for a given pageControlsId