diff options
author | Marvin Borner | 2021-01-27 23:28:55 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-27 23:28:55 +0100 |
commit | 3045ccac64a1595a7ed89415cd0521e387bfa2c7 (patch) | |
tree | 40989f641afead3fee265715fb3be950323c2456 /profile/public | |
parent | a032120bf8fe1e905082ade0dd14fd2198a4574b (diff) |
That's dump (pun intended)
Diffstat (limited to 'profile/public')
-rw-r--r-- | profile/public/user.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/profile/public/user.js b/profile/public/user.js index b0eb768..39d6713 100644 --- a/profile/public/user.js +++ b/profile/public/user.js @@ -171,7 +171,7 @@ function addChar(char) { inp.maxLength = 255; - btn.addEventListener("click", async e => { + btn.addEventListener("click", async (e) => { const char = inp.value; const body = JSON.stringify({ char }); await fetch(`api/char/${uid}`, { @@ -196,4 +196,4 @@ fetch(`api/comments/${uid}`) fetch(`api/char/${uid}`) .then((response) => response.json()) - .then(addChar);
\ No newline at end of file + .then(addChar); |