fix(core): update

This commit is contained in:
2021-10-16 21:17:02 +02:00
parent 7cbd0bd99b
commit 7a4d557724
10 changed files with 33 additions and 32 deletions

View File

@ -98,11 +98,11 @@ export class SmartDataDbDoc<T extends TImplements, TImplements, TManager extends
}
for (const key of Object.keys(filterArg2)) {
convertFilterArgument(`${keyPathArg}.${key}`, filterArg2[key]);
}
}
} else {
convertedFilter[keyPathArg] = filterArg2
convertedFilter[keyPathArg] = filterArg2;
}
}
};
for (const key of Object.keys(filterArg)) {
convertFilterArgument(key, filterArg[key]);
}