Skip to content

Commit

Permalink
fix: Compliance number filter input limited to 15 characters (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernardvdv authored Jun 20, 2022
1 parent 1713a68 commit b991ff2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Changelog

unreleased
==========
* fix: Compliance number filter input limited to 15 characters

1.2.0 (2022-06-17)
==================
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ <h3>{% blocktrans with filter_title=title %} By {{ filter_title }} {% endblocktr
<input
type="text"
value="{{ spec.value|default_if_none:'' }}"
name="{{ spec.parameter_name }}"/>
name="{{ spec.parameter_name }}"
maxlength="15"/>
<input type="submit" class="button" value="Search">
{% if not all_choice.selected %}
<a href="{{ all_choice.query_string }}">⨉ {% trans 'Clear' %}</a>
Expand Down

0 comments on commit b991ff2

Please sign in to comment.