Browse Source

Restore glitch-soc's 500 characters limit for bios (fixes #625)

closed-social-glitch-2
Thibaut Girka 5 years ago
committed by ThibG
parent
commit
617c3a8006
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/core/settings.js

+ 1
- 1
app/javascript/core/settings.js View File

@ -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…
Cancel
Save