Skip to content

Commit

Permalink
value
Browse files Browse the repository at this point in the history
  • Loading branch information
Ko71k committed Dec 16, 2024
1 parent 21c252b commit 0340858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/src/modules/handleEventsActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export async function handleCreateEventSubmit(event, pageToCome, navigate) {
const tag = Array.from(document.getElementById('eventTagEntry').value.split(' '), (tag) => removeDangerous(tag));
const dateStart = removeDangerous(document.getElementById('eventBeginEntry').value) + ':00Z';
const dateEnd = removeDangerous(document.getElementById('eventEndEntry').value) + ':00Z';
console.log(document.getElementById('categoriesInput').categories.value);
console.log(document.getElementById('categoriesInput').value);
const categoryId = Number(removeDangerous(document.getElementById('categoriesInput').value));
const image = document.getElementById('imageInput').files[0];

Expand Down

0 comments on commit 0340858

Please sign in to comment.