Add maxlength attribute to "Author name" input
This commit is contained in:
parent
01bf5e071a
commit
510f1fdc15
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ window.onload = () => {
|
|||
<input class="editAuthorLink" type="text" value="${encodeHTML(object.embed?.author?.icon_url || '')}" placeholder="Icon URL" autocomplete="off"/>
|
||||
</div>
|
||||
<div class="editName">
|
||||
<input class="editAuthorName" type="text" value="${encodeHTML(object.embed?.author?.name || '')}" placeholder="Author name" autocomplete="off" />
|
||||
<input class="editAuthorName" maxlength="256" type="text" value="${encodeHTML(object.embed?.author?.name || '')}" placeholder="Author name" autocomplete="off" />
|
||||
</div>
|
||||
</div>
|
||||
<form method="post" enctype="multipart/form-data">
|
||||
|
|
Loading…
Add table
Reference in a new issue