mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 04:57:07 -04:00
debugging _fieldNameToId
This commit is contained in:
parent
17fcfd3697
commit
382b14ea27
1 changed files with 4 additions and 1 deletions
|
@ -147,7 +147,10 @@ class AdvancedFilter {
|
|||
|
||||
_fieldNameToId(field)
|
||||
{
|
||||
CustomFields.find({'name':field})[0]._id;
|
||||
console.log("searching: "+field);
|
||||
const found = CustomFields.find({'name':field});
|
||||
console.log(found);
|
||||
return found._id;
|
||||
}
|
||||
|
||||
_arrayToSelector(commands)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue