remove ttl for collections

This commit is contained in:
chrislu
2025-07-01 21:11:31 -07:00
parent 2f9321086f
commit d4f4c04361
4 changed files with 70 additions and 90 deletions

View File

@@ -698,23 +698,22 @@ function exportCollections() {
return;
}
const headers = ['Collection Name', 'Data Center', 'Replication', 'Volumes', 'Files', 'Size', 'Disk Types', 'Status'];
const headers = ['Collection Name', 'Data Center', 'Volumes', 'Files', 'Size', 'Disk Types', 'Status'];
const rows = [];
// Get table rows
const tableRows = table.querySelectorAll('tbody tr');
tableRows.forEach(row => {
const cells = row.querySelectorAll('td');
if (cells.length >= 8) {
if (cells.length >= 7) {
rows.push([
cells[0].textContent.trim(),
cells[1].textContent.trim(),
cells[2].textContent.trim(),
cells[3].textContent.trim(),
cells[4].textContent.trim(),
cells[5].textContent.trim(),
formatDiskTypes(cells[6].textContent.trim()),
cells[7].textContent.trim()
formatDiskTypes(cells[5].textContent.trim()),
cells[6].textContent.trim()
]);
}
});