Browse Source

add item list on sprint page.

master
Gisle Aune 2 years ago
parent
commit
015c0c18b9
  1. 12
      frontend/src/lib/components/scope/SprintBody.svelte

12
frontend/src/lib/components/scope/SprintBody.svelte

@ -40,7 +40,13 @@
{/if}
{/each}
{:else}
<AmountRow>
<Amount label="Acquired Items" value={(sprint.items||[]).length} />
</AmountRow>
{#if compact}
<AmountRow>
<Amount label="Acquired Items" value={(sprint.items||[]).length} />
</AmountRow>
{:else}
{#each (sprint.items||[]) as item (item.id)}
<ItemSubSection compact item={item} />
{/each}
{/if}
{/if}
Loading…
Cancel
Save