@if (note$ | async; as note) { @if (note.image) {
}
@if (note.tasks) {
@for (task of note.tasks; track trackByFn($index, task)) {
}
} @if (note.labels && note.labels.length) {
@for ( label of note.labels; track trackByFn($index, label) ) {
{{ label.title }}
}
} @if (!note.id) {
} @if (note.id) {
@if (labels$ | async; as labels) { @for (label of labels; track label) { } }
}
}