Fix #16245 Failed Zoom search clears existing values
Signed-off-by: Petr Duda <petrduda@seznam.cz>
This commit is contained in:
parent
20f17d4fda
commit
e97ad238fc
@ -37,10 +37,10 @@
|
||||
and criteria_column_names[i] != 'pma_null' %}
|
||||
{% set key = keys[criteria_column_names[i]] %}
|
||||
{% set properties = self.getColumnProperties(i, key) %}
|
||||
{% set type = type|merge({i: properties['type']}) %}
|
||||
{% set collation = collation|merge({i: properties['collation']}) %}
|
||||
{% set func = func|merge({i: properties['func']}) %}
|
||||
{% set value = value|merge({i: properties['value']}) %}
|
||||
{% set type = type|merge({(i): properties['type']}) %}
|
||||
{% set collation = collation|merge({(i): properties['collation']}) %}
|
||||
{% set func = func|merge({(i): properties['func']}) %}
|
||||
{% set value = value|merge({(i): properties['value']}) %}
|
||||
{% endif %}
|
||||
{# Column type #}
|
||||
<td dir="ltr">
|
||||
@ -56,9 +56,9 @@
|
||||
</td>
|
||||
{# Inputbox for search criteria value #}
|
||||
<td>
|
||||
{{ value[i] is defined ? value[i]|raw }}
|
||||
</td>
|
||||
<td>
|
||||
{{ value[i] is defined ? value[i]|raw }}
|
||||
{# Displays hidden fields #}
|
||||
<input type="hidden"
|
||||
name="criteriaColumnTypes[{{ i }}]"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user