mirror of
https://github.com/wekan/wekan.git
synced 2025-12-21 09:50:13 +01:00
removing .cmd in oricessing Operators
This commit is contained in:
parent
778a29855f
commit
c3044a6b8b
1 changed files with 2 additions and 2 deletions
|
|
@ -208,8 +208,8 @@ class AdvancedFilter {
|
||||||
case '|':
|
case '|':
|
||||||
case '||':
|
case '||':
|
||||||
{
|
{
|
||||||
const op1 = commands[i-1].cmd;
|
const op1 = commands[i-1];
|
||||||
const op2 = commands[i+1].cmd;
|
const op2 = commands[i+1];
|
||||||
commands[i] = {$or: [op1, op2]};
|
commands[i] = {$or: [op1, op2]};
|
||||||
commands.splice(i-1, 1);
|
commands.splice(i-1, 1);
|
||||||
commands.splice(i, 1);
|
commands.splice(i, 1);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue