RED-3800: RSS editing
This commit is contained in:
parent
4555f596bb
commit
b5520473da
@ -43,13 +43,16 @@
|
||||
</iqser-editable-input>
|
||||
</div>
|
||||
<div>{{ entry.value.transformation }}</div>
|
||||
<div class="annotation-grid">
|
||||
<ng-container *ngFor="let annotation of entry.value.scmAnnotations">
|
||||
<div>{{ annotation.type }}</div>
|
||||
<div>{{ annotation.ruleNumber }}</div>
|
||||
<div>{{ annotation.pages.join(',') }}</div>
|
||||
<div>{{ annotation.reason }}</div>
|
||||
</ng-container>
|
||||
<!-- <div>{{ entry.value.scmAnnotations || '-' }}</div>-->
|
||||
<div>
|
||||
<ul *ngIf="entry.value.scmAnnotations; else noAnnotations" class="pl-0">
|
||||
<li *ngFor="let annotation of entry.value.scmAnnotations" class="mb-8">
|
||||
<strong>Type: </strong> {{ annotation.type }}, <strong>Rule: </strong> {{ annotation.ruleNumber }},
|
||||
<strong>Pages: </strong>{{ annotation.pages.join(',') }}, <strong>Reason: </strong> {{ annotation.reason }}
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ng-template #noAnnotations>-</ng-template>
|
||||
</div>
|
||||
</ng-container>
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user