This commit is contained in:
2025-11-02 00:42:47 +01:00
parent 09430c6f40
commit 32d627fd6d
2 changed files with 2 additions and 4 deletions
+1 -2
View File
@@ -2341,8 +2341,7 @@ const AppLayout = () => {
if (totalCount > 1) {
const badge = document.createElement('div');
badge.className = 'document-drag-preview__count';
badge.textContent =
totalCount > maxVisible ? `+${totalCount - maxVisible}` : `${totalCount}`;
badge.textContent = `${totalCount}`;
wrapper.appendChild(badge);
}