Compare commits
No commits in common. "aef8920eadc1ed87f4f1971610139ba0b365076d" and "2f7c19f28e6fcc9ff38ccd1cd1b420ccb1c465b7" have entirely different histories.
aef8920ead
...
2f7c19f28e
@ -3,8 +3,6 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="author" content="philopsher">
|
||||
<meta name="description" content="notes and schedule for organized readings of ml works">
|
||||
<title>philopsher's ml reading</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<script src="index.js" type="module" defer></script>
|
||||
|
||||
@ -77,7 +77,7 @@ async function makeScheduleTable() {
|
||||
scheduleForm.onsubmit = async (ev) => {
|
||||
ev.preventDefault();
|
||||
const formdata = new FormData(ev.target);
|
||||
const data = [...formdata].reduce(
|
||||
const data = formdata.entries().reduce(
|
||||
(acc, [key, val]) => ({ ...acc, [key]: val }),
|
||||
{},
|
||||
);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user