소스 검색

add space on end to more feedback

Erwin Jacimino 8 달 전
부모
커밋
22870a3502
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      public/main/js/app.js

+ 1 - 0
public/main/js/app.js

@@ -303,6 +303,7 @@ function initializeChat() {
                             chatInputElement.value = inputValue.slice(0, lastWordIndex) + `@${user}` + inputValue.slice(lastWordIndex + lastWord.length);
                         }
                         userList.classList.add("hidden");
+                        chatInputElement.value += " ";
                         chatInputElement.focus();
                     };
                     const color = getUserColor(user);