From d5aeccfc05e694d11e83ec2c83d7cb6972adeaff Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Wed, 23 Apr 2025 12:18:44 +0100 Subject: [PATCH] fix(app): remove sorting setup for non-existent tables --- public/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/app.js b/public/app.js index 26a20f608..3eae8ca70 100644 --- a/public/app.js +++ b/public/app.js @@ -254,8 +254,8 @@ document.addEventListener('DOMContentLoaded', function() { // Setup sorting for all tables setupTableSorting('nodes-table'); - setupTableSorting('vms-table'); - setupTableSorting('containers-table'); + // setupTableSorting('vms-table'); // Removed - Table doesn't exist in base HTML + // setupTableSorting('containers-table'); // Removed - Table doesn't exist in base HTML setupTableSorting('main-table'); // --- Filtering Logic ---