Mercurial > hg > ugly-duckling
view src/app/notebook-feed/notebook-feed.component.html @ 206:1db0bb28688b
Introduce id field for analysis items, currently optional but arguably shouldn't be. Currently an incrementing counter uniquely identifies an item - not ideal.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Fri, 24 Mar 2017 16:14:57 +0000 |
parents | d179cf7df697 |
children | 1c1cc4ec183c |
line wrap: on
line source
<template ngFor let-item [ngForOf]="analyses"> <div [class.break]="item.isRoot"> <ugly-analysis-item [timeline]="item.hasSharedTimeline ? sharedTimeline : undefined" [title]="item.title" [description]="item.description" [isActive]="rootAudioUri === item.rootAudioUri" [isRoot]="item.isRoot" [id]="item.id"></ugly-analysis-item> </div> </template>