Skip to content

Commit

Permalink
Rename selector
Browse files Browse the repository at this point in the history
  • Loading branch information
tkleinke committed Dec 20, 2024
1 parent 3936158 commit 6b7a1bc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
</search-bar>
</div>
<paging-buttons *ngIf="totalDocumentCount > 0"
[currentPage]="getCurrentPage()"
[pageCount]="getPageCount()"
[canTurnPage]="canTurnPage()"
[canTurnPageBack]="canTurnPageBack()"
(onTurnPage)="turnPage()"
(onTurnPageBack)="turnPageBack()">
[currentPage]="getCurrentPage()"
[pageCount]="getPageCount()"
[canTurnPage]="canTurnPage()"
[canTurnPageBack]="canTurnPageBack()"
(onTurnPage)="turnPage()"
(onTurnPageBack)="turnPageBack()">
</paging-buttons>
<button id="close-button" type="button" class="btn btn-primary btn-square"
(click)="activeModal.dismiss('cancel')">
Expand All @@ -36,11 +36,10 @@

<div class="modal-body">
<div *ngFor="let typeDocumentWithLinkedImages of typeDocumentsWithLinkedImages">
<dai-type-row
[document]="typeDocument(typeDocumentWithLinkedImages)"
[images]="images(typeDocumentWithLinkedImages)"
(onSelect)="activeModal.close(typeDocument(typeDocumentWithLinkedImages))">
</dai-type-row>
<type-row [document]="typeDocument(typeDocumentWithLinkedImages)"
[images]="images(typeDocumentWithLinkedImages)"
(onSelect)="activeModal.close(typeDocument(typeDocumentWithLinkedImages))">
</type-row>
</div>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { ImageUrlMaker } from '../../../../../services/imagestore/image-url-make


@Component({
selector: 'dai-type-row',
selector: 'type-row',
templateUrl: './type-row.html'
})
/**
Expand Down

0 comments on commit 6b7a1bc

Please sign in to comment.