Skip to content

Commit

Permalink
Update Admin JS
Browse files Browse the repository at this point in the history
  • Loading branch information
jontyms committed Aug 28, 2024
1 parent ca853eb commit 915656e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/static/admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,9 @@ function editUser(payload) {
},
};
const user_id = payload.id;
fetch("/admin/get", options)
fetch("/admin/get", options);

fetch("/admin/get?member_id=" + payload.id)
.then((data) => {
return data.json();
})
Expand Down

0 comments on commit 915656e

Please sign in to comment.