EQMS-1541: fixes TeamStep in qms document wizard (#8840)
Some checks are pending
CI / uitest-pg (push) Waiting to run
CI / uitest-qms (push) Waiting to run
CI / uitest-workspaces (push) Waiting to run
CI / docker-build (push) Blocked by required conditions
CI / build (push) Waiting to run
CI / svelte-check (push) Blocked by required conditions
CI / formatting (push) Blocked by required conditions
CI / test (push) Blocked by required conditions
CI / uitest (push) Waiting to run
CI / dist-build (push) Blocked by required conditions

This commit is contained in:
Victor Ilyushchenko 2025-05-05 17:52:14 +03:00 committed by GitHub
parent 4a24ca257f
commit 6ffb641b91
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,11 +36,15 @@
docObject[type] = users
}
$: reviewers = docObject?.reviewers ?? []
$: approvers = docObject?.approvers ?? []
$: coAuthors = docObject?.coAuthors ?? []
</script>
{#if docObject !== undefined}
<div class="root">
<DocTeam controlledDoc={docObject} {space} on:update={handleUpdate} />
<DocTeam controlledDoc={docObject} {space} on:update={handleUpdate} {approvers} {reviewers} {coAuthors} />
</div>
{/if}