about summary refs log tree commit diff
path: root/app/javascript/core/settings.js
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2018-08-06 08:02:06 +0200
committerThibG <thib@sitedethib.com>2018-08-06 08:20:29 +0200
commit617c3a8006b8b793604ff78ef331b95d47dc3d6c (patch)
tree87794541447994e39423495b44caa3399e641f5a /app/javascript/core/settings.js
parent5e6cec4a40417fabeae750e9ede7615c07e000a2 (diff)
Restore glitch-soc's 500 characters limit for bios (fixes #625)
Diffstat (limited to 'app/javascript/core/settings.js')
-rw-r--r--app/javascript/core/settings.js2
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);
   }
 });