mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-27 10:31:36 +01:00
Restore glitch-soc's 500 characters limit for bios (fixes #625)
This commit is contained in:
parent
5e6cec4a40
commit
617c3a8006
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ delegate(document, '#account_note', 'input', ({ target }) => {
|
|||
const noteCounter = document.querySelector('.note-counter');
|
||||
|
||||
if (noteCounter) {
|
||||
noteCounter.textContent = 160 - length(target.value);
|
||||
noteCounter.textContent = 500 - length(target.value);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue