diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-08-06 08:02:06 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2018-08-06 08:20:29 +0200 |
commit | 617c3a8006b8b793604ff78ef331b95d47dc3d6c (patch) | |
tree | 87794541447994e39423495b44caa3399e641f5a /app/javascript/core | |
parent | 5e6cec4a40417fabeae750e9ede7615c07e000a2 (diff) |
Restore glitch-soc's 500 characters limit for bios (fixes #625)
Diffstat (limited to 'app/javascript/core')
-rw-r--r-- | app/javascript/core/settings.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/core/settings.js b/app/javascript/core/settings.js index d727ca996..e48fcb9b1 100644 --- a/app/javascript/core/settings.js +++ b/app/javascript/core/settings.js @@ -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); } }); |