diff --git a/projects/frontend/src/components/FileList/FileList.jsx b/projects/frontend/src/components/FileList/FileList.jsx
index b5a4dfb..f28017e 100644
--- a/projects/frontend/src/components/FileList/FileList.jsx
+++ b/projects/frontend/src/components/FileList/FileList.jsx
@@ -68,7 +68,18 @@ const Row = React.memo(({ index, style, data }) => {
{index === selectedIndex ? '✓' : ''}
)}
-
{file.agent_id}
+
+
+ {file.agent_id}
+
+ }
+ side="top"
+ >
+ {file.agent_id}
+
+
{formatFileSize(file.size)}
{new Date(file.timestamp).toLocaleString()}
@@ -288,12 +299,12 @@ const FileList = () => {
setViewFilter(viewStateParam || 'unviewed_by_me');
setObjectIdFilter(objectIdParam || '');
setSelectedTag(tagParam || '');
-
+
// Update sort order from URL
if (sortParam !== null) {
setSortNewestFirst(sortParam === 'newest');
}
-
+
// Update findings filter from URL
setShowOnlyWithFindings(findingsParam === 'true');
}, [searchParams]);