platform/plugins/board-resources/src/components/UserBoxList.svelte
Andrey Sobolev b0abf93487
TSK-885: Fix invalid deps (#2777)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2023-03-22 09:48:57 +07:00

18 lines
450 B
Svelte

<script lang="ts">
import { Employee } from '@hcengineering/contact'
import { Ref } from '@hcengineering/core'
import contact from '@hcengineering/contact'
import board from '../plugin'
import { Component } from '@hcengineering/ui'
export let value: Ref<Employee>[]
export let readonly = false
</script>
<Component
is={contact.component.UserBoxList}
props={{ items: value, label: board.string.Members, readonly }}
on:update
/>