platform/plugins/training-resources/src/components/SentRequestPresenter.svelte
Alexey Zinoviev 48e1ca9849
UBERF-7090: Add QMS plugins (#5716)
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com>
2024-06-03 19:55:54 +04:00

23 lines
624 B
Svelte

<!--
Copyright @ 2024 Hardcore Engineering Inc.
-->
<script lang="ts">
import type { TrainingRequest } from '@hcengineering/training'
import type { WithLookup } from '@hcengineering/core'
import { DocNavLink } from '@hcengineering/view-resources'
export let value: WithLookup<TrainingRequest>
export let disabled: boolean = false
</script>
{#if value.$lookup?.attachedTo}
<div class="content-halfcontent-color">
<DocNavLink object={value} {disabled} noOverflow accent>
<span class="whitespace-nowrap fs-bold">
{value.$lookup.attachedTo.code}
</span>
</DocNavLink>
</div>
{/if}