Update button selector from .delete-entry-button to .entry-icon-button

This commit is contained in:
2026-05-04 10:34:05 +02:00
parent f1c8d0c7ea
commit 208b21a6bc

View File

@@ -539,7 +539,7 @@ window.addEventListener('DOMContentLoaded', async () => {
}
function setActionLinksDisabled(disabled) {
document.querySelectorAll('.delete-entry-button').forEach(button => {
document.querySelectorAll('.entry-icon-button').forEach(button => {
if (disabled) {
button.disabled = true;
button.style.opacity = '0.5';