mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 04:57:07 -04: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 '||':
|
||||
{
|
||||
const op1 = commands[i-1].cmd;
|
||||
const op2 = commands[i+1].cmd;
|
||||
const op1 = commands[i-1];
|
||||
const op2 = commands[i+1];
|
||||
commands[i] = {$or: [op1, op2]};
|
||||
commands.splice(i-1, 1);
|
||||
commands.splice(i, 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue