mirror of
https://github.com/hcengineering/platform.git
synced 2025-05-05 15:02:37 +00:00
18 lines
450 B
Svelte
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
|
|
/>
|