fixes
ci / docker (backend, backend/Dockerfile, backend) (push) Successful in 8m18s
ci / docker (frontend, frontend/Dockerfile, frontend) (push) Successful in 8m17s

This commit is contained in:
2025-10-16 12:07:42 +02:00
parent d1f0a2d48b
commit e1e046f846
2 changed files with 10 additions and 4 deletions
+2 -1
View File
@@ -70,6 +70,7 @@ const DocumentsTable = ({
getDocumentAsset = () => null,
getDownloadHref,
onTagClick,
isSearchLoading = false,
}) => {
const showingSearchResults = searchResults !== null;
const rows = showingSearchResults ? searchResults : documents;
@@ -453,7 +454,7 @@ const DocumentsTable = ({
</table>
)}
</div>
{rows.length === 0 && isFilterActive && (
{rows.length === 0 && showingSearchResults && !isSearchLoading && (
<div className="empty-state">No documents match the current filters.</div>
)}
{showingSearchResults && rows.length > 0 && (