This commit is contained in:
paoloar77
2024-05-20 23:41:03 +02:00
parent 0b9f448fee
commit f9d362bad9

View File

@@ -26,7 +26,7 @@
const action = event.target.dataset.action;
const id = form.querySelector('input[name="id"]').value;
fetch(`${window.location}/handle-article-action-pao/${id}/${action}`)
fetch(`${window.location}/apimacro/public/handle-article-action-pao/${id}/${action}`)
.then(response => response.text())
.then(data => result.innerHTML = data);
}