diff --git a/webui/web/explorer.html b/webui/web/explorer.html index 310d3b47..b2bc6a37 100644 --- a/webui/web/explorer.html +++ b/webui/web/explorer.html @@ -192,14 +192,50 @@ under the License.
- -
- + +
+
+ + + +
+ +
+ +
+
+ + +
@@ -1225,11 +1261,14 @@ under the License. if (createdCol) createdCol.style.display = 'none'; } + const favoritesSet = new Set(loadFavorites()); + bucketsList.forEach(bucket => { const name = bucket.name || bucket.Name; const creationDate = bucket.creationdate || bucket.CreationDate; const versioningStatus = bucketsVersioningCache[name] || ''; const objectLockConfig = bucketsObjectLockCache[name] || { enabled: false }; + const starred = favoritesSet.has(name); const row = document.createElement('tr'); row.className = 'file-row border-b border-gray-50'; row.innerHTML = ` @@ -1250,6 +1289,11 @@ under the License. ${hasAnyCreationDate ? `${creationDate ? new Date(creationDate).toLocaleDateString() : '-'}` : ''}
+ + +
+ `).join(''); + } + function refresh() { if (currentBucket) { loadObjects();