From 523a63f776dc07e174ba21f8e562ea9837193ccb Mon Sep 17 00:00:00 2001 From: downtownallday Date: Tue, 12 Jan 2021 09:22:41 -0500 Subject: [PATCH] Make the default table row limit 500 instead of 1000 --- management/reporting/ui/settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/management/reporting/ui/settings.js b/management/reporting/ui/settings.js index 179dc4c4..297e7d57 100644 --- a/management/reporting/ui/settings.js +++ b/management/reporting/ui/settings.js @@ -24,7 +24,7 @@ class UserSettings { } else { s.data = { - row_limit: 1000 + row_limit: 500 }; } window.miabldap.user_settings = s;