mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-23 11:31:57 +03:00
Remove mention extra (#2726)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
This commit is contained in:
parent
3cfd9f14b1
commit
b6980f307e
@ -87,7 +87,6 @@
|
||||
{/if}
|
||||
{:else if node.nodeName === 'SPAN'}
|
||||
<span style={node.getAttribute('style')}>
|
||||
<svelte:self nodes={node.childNodes} />
|
||||
{#if node.getAttribute('data-objectclass') !== undefined && node.getAttribute('data-id') !== undefined}
|
||||
<Component
|
||||
is={view.component.ObjectPresenter}
|
||||
@ -100,6 +99,8 @@
|
||||
}
|
||||
}}
|
||||
/>
|
||||
{:else}
|
||||
<svelte:self nodes={node.childNodes} />
|
||||
{/if}
|
||||
</span>
|
||||
{:else if node.nodeName === 'TABLE'}
|
||||
|
@ -42,7 +42,7 @@
|
||||
$: handlePersonEdit = onEmployeeEdit ?? onEdit
|
||||
</script>
|
||||
|
||||
<div bind:this={container}>
|
||||
<div bind:this={container} class="flex-presenter inline-presenter">
|
||||
<PersonPresenter
|
||||
{value}
|
||||
{tooltipLabels}
|
||||
@ -57,14 +57,5 @@
|
||||
/>
|
||||
</div>
|
||||
{#if value?.active === false}
|
||||
<div class="ml-1">
|
||||
(<Label label={contact.string.Inactive} />)
|
||||
</div>
|
||||
(<Label label={contact.string.Inactive} />)
|
||||
{/if}
|
||||
|
||||
<style lang="scss">
|
||||
.status {
|
||||
font-weight: 400;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
</style>
|
||||
|
Loading…
Reference in New Issue
Block a user