mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-26 11:34:58 +02:00
Fix meeting minutes (#7181)
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com>
This commit is contained in:
@@ -24,5 +24,11 @@
|
||||
</script>
|
||||
|
||||
{#if extension}
|
||||
<Component is={extension.components[kind]} {props} on:close on:open on:submit />
|
||||
<Component
|
||||
is={extension.components[kind].component}
|
||||
props={{ ...extension.components[kind].props, ...props }}
|
||||
on:close
|
||||
on:open
|
||||
on:submit
|
||||
/>
|
||||
{/if}
|
||||
|
||||
+3
-2
@@ -30,7 +30,7 @@
|
||||
|
||||
$: attrViewletConfig = viewlet?.config?.[attributeModel.key]
|
||||
$: attributeIcon = attrViewletConfig?.icon ?? attributeModel.icon ?? IconEdit
|
||||
$: isUnset = values.length > 0 && !values.some((value) => value !== null && value !== '')
|
||||
$: isUnset = values.length > 0 && !values.some((value) => value != null && value !== '')
|
||||
|
||||
$: isTextType = getIsTextType(attributeModel)
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
</script>
|
||||
|
||||
{#if isUnset}
|
||||
<div class="row overflow-label">
|
||||
<div class="unset row overflow-label">
|
||||
<span class="mr-1"><Icon icon={attributeIcon} size="small" /></span>
|
||||
<Label label={activity.string.Unset} />
|
||||
<span class="lower"><Label label={attributeModel.label} /></span>
|
||||
@@ -89,6 +89,7 @@
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.25rem;
|
||||
color: var(--global-primary-TextColor);
|
||||
}
|
||||
|
||||
.showMore {
|
||||
|
||||
Reference in New Issue
Block a user