Merge pull request #2264 from kkigomi/input-number

관리페이지 설정 폼에서 숫자 입력 항목 필드의 type 을 number 로 변경
This commit is contained in:
Kijin Sung 2024-01-20 13:29:55 +09:00 committed by GitHub
commit bb1699f577
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 17 additions and 17 deletions

View file

@ -44,7 +44,7 @@
<div class="x_control-group">
<label class="x_control-label" for="search_division">{$lang->cmd_search_division}</label>
<div class="x_controls">
<input type="number" name="search_division" value="{$config->search_division ?? 5000}" />
<input type="number" min="0" name="search_division" value="{$config->search_division ?? 5000}" />
<p class="x_help-block">{$lang->about_search_division}</p>
</div>
</div>