mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 04:57:07 -04:00
stringify console.logs becouse of asynchrone nature from chromes interpretation... WAT
This commit is contained in:
parent
eb859dac3a
commit
778a29855f
1 changed files with 3 additions and 3 deletions
|
@ -155,13 +155,13 @@ class AdvancedFilter {
|
|||
|
||||
_arrayToSelector(commands)
|
||||
{
|
||||
console.log('Parts: ', commands);
|
||||
console.log('Parts: ', JSON.stringify(commands));
|
||||
try {
|
||||
//let changed = false;
|
||||
this._processConditions(commands);
|
||||
console.log('Conditions: ', commands);
|
||||
console.log('Conditions: ', JSON.stringify(commands));
|
||||
this._processLogicalOperators(commands);
|
||||
console.log('Operator: ', commands);
|
||||
console.log('Operator: ', JSON.stringify(commands));
|
||||
}
|
||||
catch (e){return { $in: [] };}
|
||||
return {$or: commands};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue