mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-23 11:31:57 +03:00
Fix duplicate activity
Fix duplicate activity Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
parent
537e32b138
commit
f2a7b73edf
@ -53,7 +53,11 @@ abstract class MongoAdapterBase extends TxProcessor {
|
||||
translated[key] = value
|
||||
}
|
||||
const classes = this.hierarchy.getDescendants(clazz)
|
||||
translated._class = { $in: classes }
|
||||
|
||||
// Only replace if not specified
|
||||
if (translated._class?.$in === undefined) {
|
||||
translated._class = { $in: classes }
|
||||
}
|
||||
// return Object.assign({}, query, { _class: { $in: classes } })
|
||||
return translated
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user