From cdc8eeb8b92a29b2fa0c580aca76eaf8505955d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Tue, 24 Feb 2026 10:06:16 -0500 Subject: [PATCH] fix double events on cache table --- public/src/admin/advanced/cache.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/admin/advanced/cache.js b/public/src/admin/advanced/cache.js index d8463da487..7b6ddace1b 100644 --- a/public/src/admin/advanced/cache.js +++ b/public/src/admin/advanced/cache.js @@ -28,7 +28,7 @@ define('admin/advanced/cache', ['alerts'], function (alerts) { }); }); - $(document).on('click', '#cache-table th', function () { + $('#cache-table').on('click', 'th', function () { const table = $(this).closest('table'); const tbody = table.find('tbody'); const columnIndex = $(this).index();