diff --git a/webapp/index.php b/webapp/index.php index 5d7d6f9..84c6392 100644 --- a/webapp/index.php +++ b/webapp/index.php @@ -2804,15 +2804,23 @@ if (function_exists('requireAuth')) { // Load data for advanced tab if (tab === 'advanced') { - loadAuditLog(); loadShortnames(); loadLogosGrid(); + } + + // Load data for integrations tab + if (tab === 'integrations') { loadWebhookSettings(); loadWebhookQueueStatus(); loadIpRegistrySettings(); loadAwsSettings(); } + // Load data for audit tab + if (tab === 'audit') { + loadAuditLog(); + } + // Load data for developer tab if (tab === 'developer') { loadSystemInfo();