From 98bfb6736e95ceb8001a5c9f469c5b6391575115 Mon Sep 17 00:00:00 2001 From: Kethsar Date: Sat, 25 Mar 2023 01:23:36 -0700 Subject: [PATCH] Remove string template around maxlength property for chat input --- templates/channel.pug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/channel.pug b/templates/channel.pug index dc030cb0..1803b8ac 100644 --- a/templates/channel.pug +++ b/templates/channel.pug @@ -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")