Skip to content

Commit

Permalink
aaaaa
Browse files Browse the repository at this point in the history
  • Loading branch information
LongmetalAdmin committed Feb 14, 2024
1 parent a8c11b0 commit e7ca99c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const list_el = document.querySelector("#teams");
form.onsubmit = async (event) => {
event.preventDefault();
const todo = input.value;
const globalid = Date.UTC();
const globalid = Date.UTC().toUTCString();
await db.todos.add({ todo , globalid });
await getTodos();
form.reset();
Expand Down

0 comments on commit e7ca99c

Please sign in to comment.