From 2c14e4eb2a9762b3c8231c95fc14cd48aede91c0 Mon Sep 17 00:00:00 2001 From: Purple Date: Sun, 18 Jan 2026 01:10:19 +0000 Subject: [PATCH] fix aws --- webapp/index.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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();