Fix meeting minutes (#7181)

Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com>
This commit is contained in:
Kristina
2024-11-16 23:30:36 +07:00
committed by GitHub
parent 430be8c3ba
commit bcdfed6871
62 changed files with 744 additions and 254 deletions
@@ -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}
@@ -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 {