fix: keep large queue cancellation responsive

This commit is contained in:
Release Bot
2026-08-12 03:22:27 +02:00
parent d1b36b0aaa
commit c843b4e623
7 changed files with 43 additions and 4 deletions
+2
View File
@@ -2305,6 +2305,8 @@ function showRecentContextMenu(row, x, y) {
applyRecentSelectionClasses();
}
const menu = document.getElementById('recentContextMenu');
const copyItem = menu.querySelector('[data-action="recent-copy-links"]');
if (copyItem) copyItem.textContent = selectedRecentIds.size > 1 ? `Links kopieren (${selectedRecentIds.size})` : 'Link kopieren';
menu.style.display = 'block';
menu.style.left = Math.min(x, window.innerWidth - menu.offsetWidth - 5) + 'px';
menu.style.top = Math.min(y, window.innerHeight - menu.offsetHeight - 5) + 'px';