From b83dbbecf2f1d3122c2c894e8cfdfdb441d08a4f Mon Sep 17 00:00:00 2001 From: William Desportes Date: Fri, 19 Feb 2021 00:31:20 +0100 Subject: [PATCH] Fix #16669 - Remove extra spaces to allow the /table/search request to work Fixes: #16669 Signed-off-by: William Desportes --- templates/table/search/index.twig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/table/search/index.twig b/templates/table/search/index.twig index e6303d69d5..4ab6c72dd2 100644 --- a/templates/table/search/index.twig +++ b/templates/table/search/index.twig @@ -66,7 +66,8 @@ {% endif %} {# Displays column's name, type, collation and value #} - {{ column_names[column_index] }} + {#- Keep this without extra spaces because it is used for a request to build the BETWEEN modal -#} + {{- column_names[column_index] -}} {% set properties = self.getColumnProperties(column_index, column_index) %}