mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-18 22:38:33 +00:00
TSK-1088: Show Kanban counters (#2924)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
parent
556cfb31d0
commit
8e0d162871
@ -245,7 +245,7 @@
|
|||||||
<svelte:fragment slot="header" let:state let:count>
|
<svelte:fragment slot="header" let:state let:count>
|
||||||
<!-- {@const status = $statusStore.get(state._id)} -->
|
<!-- {@const status = $statusStore.get(state._id)} -->
|
||||||
<div class="header flex-col">
|
<div class="header flex-col">
|
||||||
<div class="flex-row-center flex-between">
|
<div class="flex-row-center">
|
||||||
{#if groupByKey === noCategory}
|
{#if groupByKey === noCategory}
|
||||||
<span class="text-base fs-bold overflow-label content-accent-color pointer-events-none">
|
<span class="text-base fs-bold overflow-label content-accent-color pointer-events-none">
|
||||||
<Label label={view.string.NoGrouping} />
|
<Label label={view.string.NoGrouping} />
|
||||||
@ -253,6 +253,9 @@
|
|||||||
{:else if headerComponent}
|
{:else if headerComponent}
|
||||||
<svelte:component this={headerComponent.presenter} value={state} {space} kind={'list-header'} />
|
<svelte:component this={headerComponent.presenter} value={state} {space} kind={'list-header'} />
|
||||||
{/if}
|
{/if}
|
||||||
|
<span class="ml-1">
|
||||||
|
{count}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</svelte:fragment>
|
</svelte:fragment>
|
||||||
|
@ -264,6 +264,7 @@
|
|||||||
<!-- {@const status = $statusStore.get(state._id)} -->
|
<!-- {@const status = $statusStore.get(state._id)} -->
|
||||||
<div class="header flex-col">
|
<div class="header flex-col">
|
||||||
<div class="flex-row-center flex-between">
|
<div class="flex-row-center flex-between">
|
||||||
|
<div class="flex-row-center gap-1">
|
||||||
{#if groupByKey === noCategory}
|
{#if groupByKey === noCategory}
|
||||||
<span class="text-base fs-bold overflow-label content-accent-color pointer-events-none">
|
<span class="text-base fs-bold overflow-label content-accent-color pointer-events-none">
|
||||||
<Label label={view.string.NoGrouping} />
|
<Label label={view.string.NoGrouping} />
|
||||||
@ -271,7 +272,11 @@
|
|||||||
{:else if headerComponent}
|
{:else if headerComponent}
|
||||||
<svelte:component this={headerComponent.presenter} value={state} {space} kind={'list-header'} />
|
<svelte:component this={headerComponent.presenter} value={state} {space} kind={'list-header'} />
|
||||||
{/if}
|
{/if}
|
||||||
<div class="flex gap-1">
|
<span class="ml-1">
|
||||||
|
{count}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="flex-row-center gap-1">
|
||||||
<Button
|
<Button
|
||||||
icon={IconAdd}
|
icon={IconAdd}
|
||||||
kind={'transparent'}
|
kind={'transparent'}
|
||||||
|
Loading…
Reference in New Issue
Block a user