Bug 37745: (bug 35402 follow-up) Fix "Rows per page" dropdown items
There were 2 class attributes. Test plan: Create a new report and run it Use the "Rows per page" dropdown to select another value => Without this patch nothing happens => With this patch applied the page is reloaded and the correct number of rows is displayed Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl> Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
parent
bae6560a26
commit
593bad6502
1 changed files with 2 additions and 2 deletions
|
@ -1131,11 +1131,11 @@
|
|||
[% FOREACH l IN limits %]
|
||||
[% IF l == limit %]
|
||||
<li>
|
||||
<a class="dropdown-item" class="limitselect" data-limit="[% l | html %]" href="#"><i class="fa fa-fw fa-check" aria-hidden="true"></i> [% l | html %]</a>
|
||||
<a class="dropdown-item limitselect" data-limit="[% l | html %]" href="#"><i class="fa fa-fw fa-check" aria-hidden="true"></i> [% l | html %]</a>
|
||||
</li>
|
||||
[% ELSE %]
|
||||
<li>
|
||||
<a class="dropdown-item" class="limitselect" data-limit="[% l | html %]" href="#"><i class="fa fa-fw" aria-hidden="true"></i> [% l | html %]</a>
|
||||
<a class="dropdown-item limitselect" data-limit="[% l | html %]" href="#"><i class="fa fa-fw" aria-hidden="true"></i> [% l | html %]</a>
|
||||
</li>
|
||||
[% END %]
|
||||
[% END %]
|
||||
|
|
Loading…
Reference in a new issue