diff options
author | beatrix-bitrot <beatrix.bitrot@gmail.com> | 2017-05-16 02:25:53 +0000 |
---|---|---|
committer | beatrix-bitrot <beatrix.bitrot@gmail.com> | 2017-06-26 02:18:52 +0000 |
commit | c0a665865e5f06f45296e76bfef3790f8149b0ee (patch) | |
tree | 1558351bd79a4a0001c771d22e0dd784a80e7f3d /app/javascript | |
parent | 96e1f756790db735edd52d17fabb68a00ec89309 (diff) |
update bio length to 500
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/packs/public.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/packs/public.js b/app/javascript/packs/public.js index a0e511b0a..150a60670 100644 --- a/app/javascript/packs/public.js +++ b/app/javascript/packs/public.js @@ -87,7 +87,7 @@ function main() { 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); } }); } |