Skip to content

Commit

Permalink
fix: corrected wrong input id, closes #3100
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed Jul 9, 2024
1 parent 5aea199 commit 85bb9d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phpmyfaq/admin/assets/src/configuration/instance.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const handleInstances = () => {
const modal = new Modal(container);
addInstance.addEventListener('click', (event) => {
event.preventDefault();
const csrf = document.querySelector('#csrf').value;
const csrf = document.querySelector('#pmf-csrf-token').value;
const url = document.querySelector('#url').value;
const instance = document.querySelector('#instance').value;
const comment = document.querySelector('#comment').value;
Expand Down

0 comments on commit 85bb9d5

Please sign in to comment.