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
document.getElementById('pagination-info').textContent=`Showing ${start} to ${end} of ${pagination.totalRequests} requests`;
447
+
448
+
// Create the pagination info message
449
+
letpaginationInfoText=`Showing ${start} to ${end} of ${pagination.totalRequests} requests`;
450
+
451
+
// Add a note about the 500 limit if we're hitting it
452
+
if(pagination.totalRequests>=500){
453
+
paginationInfoText+=` <span class="text-warning" title="Only the most recent 500 matching requests are displayed. Use more specific filters to narrow your results."><i class="bi bi-info-circle"></i> (maximum limit - refine filters for more specific results)</span>`;
0 commit comments