diff options
| author | chrislu <chris.lu@gmail.com> | 2025-07-01 21:11:31 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2025-07-01 21:11:31 -0700 |
| commit | d4f4c04361cf931e6e037660a0ac434ef0f432c6 (patch) | |
| tree | 6cb34c7b955d9378f8a60aab8c5cfc7158cfee3a /weed/admin/static/js/admin.js | |
| parent | 2f9321086f34f5f316ce489708515093e91bdb4c (diff) | |
| download | seaweedfs-d4f4c04361cf931e6e037660a0ac434ef0f432c6.tar.xz seaweedfs-d4f4c04361cf931e6e037660a0ac434ef0f432c6.zip | |
remove ttl for collections
Diffstat (limited to 'weed/admin/static/js/admin.js')
| -rw-r--r-- | weed/admin/static/js/admin.js | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/weed/admin/static/js/admin.js b/weed/admin/static/js/admin.js index c46c389ea..a3cb09af7 100644 --- a/weed/admin/static/js/admin.js +++ b/weed/admin/static/js/admin.js @@ -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() ]); } }); |
