Remove mention extra (#2726)

Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
This commit is contained in:
Denis Bykhov 2023-03-13 14:13:46 +06:00 committed by GitHub
parent 3cfd9f14b1
commit b6980f307e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 12 deletions

View File

@ -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'}

View File

@ -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>