fix duplicate modal

This commit is contained in:
Raven Scott 2024-11-29 20:12:02 -05:00
parent 55eefce740
commit b2302f8067

3
app.js
View File

@ -335,6 +335,9 @@ function renderContainers(containers) {
// Add event listeners for action buttons
addActionListeners(row, container);
// Add event listener for duplicate button
const duplicateBtn = row.querySelector('.action-duplicate');
duplicateBtn.addEventListener('click', () => openDuplicateModal(container));
});
}