mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-01 00:11:05 +00:00
Fixed no grouping issues (#2434)
This commit is contained in:
parent
8093875c64
commit
3c93efde07
@ -27,6 +27,7 @@
|
|||||||
getEventPositionElement,
|
getEventPositionElement,
|
||||||
IconAdd,
|
IconAdd,
|
||||||
IconMoreH,
|
IconMoreH,
|
||||||
|
Label,
|
||||||
showPopup,
|
showPopup,
|
||||||
Spinner
|
Spinner
|
||||||
} from '@hcengineering/ui'
|
} from '@hcengineering/ui'
|
||||||
@ -215,6 +216,10 @@
|
|||||||
enlargedText
|
enlargedText
|
||||||
{currentSpace}
|
{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}
|
{:else if headerComponent}
|
||||||
<Component
|
<Component
|
||||||
is={headerComponent}
|
is={headerComponent}
|
||||||
|
@ -76,7 +76,7 @@
|
|||||||
{#each model as attributeModel}
|
{#each model as attributeModel}
|
||||||
{#if attributeModel.props?.type === 'grow'}
|
{#if attributeModel.props?.type === 'grow'}
|
||||||
<svelte:component this={attributeModel.presenter} />
|
<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}
|
{#if attributeModel.props?.fixed}
|
||||||
<FixedColumn
|
<FixedColumn
|
||||||
width={propsWidth[attributeModel.key]}
|
width={propsWidth[attributeModel.key]}
|
||||||
|
Loading…
Reference in New Issue
Block a user