aethetic consistency

pull/104/head
Aevann 2023-01-28 12:40:03 +02:00
parent a8a1af6bea
commit 51f6c8bb0a
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ function autoExpand(field) {
const textareas = document.getElementsByTagName('textarea')
for (const element of textareas) {
element.addEventListener('input', ()=>{
element.addEventListener('input', () => {
autoExpand(element)
});
}