mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-26 19:44:57 +02:00
Update deps oct 11 (#10069)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
+1
-1
@@ -56,7 +56,7 @@
|
||||
workflow = res
|
||||
})
|
||||
|
||||
$: state = (doc ? workflow?.get(doc._id) ?? [] : [])[0]
|
||||
$: state = (doc ? (workflow?.get(doc._id) ?? []) : [])[0]
|
||||
$: signers = (state?.approvals ?? [])
|
||||
.filter((a) => a.state === 'approved')
|
||||
.map((a) => {
|
||||
|
||||
+1
-1
@@ -62,7 +62,7 @@
|
||||
$: members = space?.members ?? []
|
||||
$: employees = members.map((m) => $employeeRefByAccountUuidStore.get(m) as Ref<Employee>).filter(notEmpty)
|
||||
|
||||
$: docQuery = space?.private ?? false ? { active: true, _id: { $in: employees } } : { active: true }
|
||||
$: docQuery = (space?.private ?? false) ? { active: true, _id: { $in: employees } } : { active: true }
|
||||
</script>
|
||||
|
||||
{#if object}
|
||||
|
||||
Reference in New Issue
Block a user