FIX_NONeB_POLICY_REGISTER
This commit is contained in:
parent
3b45817eb3
commit
75da2ab3e1
@ -3820,7 +3820,12 @@
|
|||||||
|
|
||||||
tables.forEach(table => {
|
tables.forEach(table => {
|
||||||
if (table.id.includes("summary")) {
|
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
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user