FIX_NONeB_POLICY_REGISTER

This commit is contained in:
Srinivas-Saravanan 2025-04-21 10:35:23 +05:30
parent 3b45817eb3
commit 75da2ab3e1

View File

@ -3820,7 +3820,12 @@
tables.forEach(table => {
if (table.id.includes("summary")) {
table.remove(); // reMove summary table from the top
let tableContainer = table.closest(".table-container") || table.parentElement;
if (tableContainer) {
tableContainer.remove(); // Remove the container, including table and collapsible bar
} else {
table.remove(); // Fallback to removing just the table if no container is found
}
}
});