Skip to content

Commit

Permalink
Update handleEventsActions.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Ko71k authored Dec 16, 2024
1 parent 9dd0dde commit 6b803b9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions public/modules/handleEventsActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export async function handleCreateEventEdit(event, id, 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');
const categoryId = Number(removeDangerous(document.getElementById('categoriesInput').value));

const latitude = removeDangerous(document.getElementById('latitude').value);
Expand Down

0 comments on commit 6b803b9

Please sign in to comment.