Add maxlength to all inputs

Because the children broke things with it.
This commit is contained in:
Eli Ribble 2026-02-06 16:56:09 +00:00
parent d464a5fbd0
commit f6f54da305
No known key found for this signature in database
5 changed files with 11 additions and 2 deletions

View file

@ -232,7 +232,7 @@ class AddressOrReportInput extends HTMLElement {
<div class="input-group">
<span class="input-group-text"><i class="fas fa-search"></i></span>
<input type="text" class="form-control form-control-lg" id="addressSearch" name="address" placeholder="${placeholder}">
<input type="text" class="form-control form-control-lg" id="addressSearch" maxlength="200" name="address" placeholder="${placeholder}">
<div id="suggestions" class="suggestions-container list-group"></div>
</div>
`;