about summary refs log tree commit diff
path: root/app/javascript/packs
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/packs')
-rw-r--r--app/javascript/packs/public.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/app/javascript/packs/public.js b/app/javascript/packs/public.js
index 096c8af80..38ef7203e 100644
--- a/app/javascript/packs/public.js
+++ b/app/javascript/packs/public.js
@@ -98,10 +98,14 @@ delegate(document, '.status__content__spoiler-link', 'click', ({ target }) => {
 
 delegate(document, '.account_display_name', 'input', ({ target }) => {
   const nameCounter = document.querySelector('.name-counter');
-  nameCounter.textContent = 30 - length(target.value);
+  if (nameCounter) {
+    nameCounter.textContent = 30 - length(target.value);
+  }
 });
 
 delegate(document, '.account_note', 'input', ({ target }) => {
   const noteCounter = document.querySelector('.note-counter');
-  noteCounter.textContent = 160 - length(target.value);
+  if (noteCounter) {
+    noteCounter.textContent = 160 - length(target.value);
+  }
 });