File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -144,9 +144,21 @@ <h2>Technologies</h2>
144144 Rows
145145 </ label >
146146 < select id ="rowsPerPage ">
147- < option value ="10 " {% if filters.rows == "10 " %}selected{% endif %} > 10</ option >
148- < option value ="25 " {% if filters.rows == "25 " %}selected{% endif %} > 25</ option >
149- < option value ="50 " {% if filters.rows == "50 " %}selected{% endif %} > 50</ option >
147+ {% if filters.rows == "10" %}
148+ < option value ="10 " selected > 10</ option >
149+ {% else %}
150+ < option value ="10 "> 10</ option >
151+ {% endif %}
152+ {% if filters.rows == "25" %}
153+ < option value ="25 " selected > 25</ option >
154+ {% else %}
155+ < option value ="25 "> 25</ option >
156+ {% endif %}
157+ {% if filters.rows == "50" %}
158+ < option value ="50 " selected > 50</ option >
159+ {% else %}
160+ < option value ="50 "> 50</ option >
161+ {% endif %}
150162 </ select >
151163 </ div >
152164 < p class ="sr-only " aria-live ="polite ">
You can’t perform that action at this time.
0 commit comments