mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-22 21:50:34 +03:00
Fixed no grouping issues (#2434)
This commit is contained in:
parent
8093875c64
commit
3c93efde07
@ -27,6 +27,7 @@
|
||||
getEventPositionElement,
|
||||
IconAdd,
|
||||
IconMoreH,
|
||||
Label,
|
||||
showPopup,
|
||||
Spinner
|
||||
} from '@hcengineering/ui'
|
||||
@ -215,6 +216,10 @@
|
||||
enlargedText
|
||||
{currentSpace}
|
||||
/>
|
||||
{:else if !groupByKey}
|
||||
<span class="text-base fs-bold overflow-label content-accent-color pointer-events-none">
|
||||
<Label label={tracker.string.NoGrouping} />
|
||||
</span>
|
||||
{:else if headerComponent}
|
||||
<Component
|
||||
is={headerComponent}
|
||||
|
@ -76,7 +76,7 @@
|
||||
{#each model as attributeModel}
|
||||
{#if attributeModel.props?.type === 'grow'}
|
||||
<svelte:component this={attributeModel.presenter} />
|
||||
{:else if attributeModel.props?.excludeByKey !== groupByKey && !(attributeModel.props?.optional && compactMode)}
|
||||
{:else if (!groupByKey || attributeModel.props?.excludeByKey !== groupByKey) && !(attributeModel.props?.optional && compactMode)}
|
||||
{#if attributeModel.props?.fixed}
|
||||
<FixedColumn
|
||||
width={propsWidth[attributeModel.key]}
|
||||
|
Loading…
Reference in New Issue
Block a user