N°2909 - Search on Enum, Date, TagSet,... with index fails (#496)

This commit is contained in:
Anne-Catherine
2023-10-20 16:45:35 +02:00
committed by GitHub
parent 9469681a0c
commit 013173019f

View File

@@ -152,7 +152,7 @@ $(function()
_initChooseDefaultOperator: function()
{
//if the class has an index, in order to maximize the performance, we force the default operator to "equal"
if (this.options.field.has_index && typeof this.options.available_operators['='] == 'object' && this.options.values.length == 0)
if (this.options.field.has_index && this.options.available_operators['='] != null && typeof this.options.available_operators['='] == 'object' && this.options.values.length == 0)
{
this.options.operator = '=';
this.options.available_operators['='].rank = -1;//we want it to be the first displayed