Update deps oct 11 (#10069)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2025-10-12 08:55:50 +07:00
committed by GitHub
parent 19aa9a0b73
commit aa7829bb93
527 changed files with 7547 additions and 7189 deletions
@@ -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) => {
@@ -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}