Remove string template around maxlength property for chat input

This commit is contained in:
Kethsar 2023-03-25 01:23:36 -07:00 committed by Calvin Montgomery
parent 2c541448a2
commit 98bfb6736e

View file

@ -46,7 +46,7 @@ html(lang="en")
#userlist
#messagebuffer.linewrap
form(action="javascript:void(0)")
input#chatline.form-control(type="text", maxlength=`${maxMsgLen}`, style="display: none")
input#chatline.form-control(type="text", maxlength=maxMsgLen, style="display: none")
#guestlogin.input-group
span.input-group-addon Guest login
input#guestname.form-control(type="text", placeholder="Name")