mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACS-8956] Add new ESLint rule for self-closing tags (#4211)
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<h1 class="aca-page-title">
|
||||
{{ (selectedRowItemsCount < 1 ? 'APP.BROWSE.LIBRARIES.MENU.FAVORITE_LIBRARIES.TITLE' : 'APP.HEADER.SELECTED') | translate: { count: selectedRowItemsCount } }}
|
||||
</h1>
|
||||
<aca-toolbar [items]="actions"></aca-toolbar>
|
||||
<aca-toolbar [items]="actions" />
|
||||
</div>
|
||||
|
||||
<div class="aca-page-layout-content">
|
||||
@@ -33,8 +33,7 @@
|
||||
icon="library_books"
|
||||
[title]="'APP.BROWSE.LIBRARIES.EMPTY_STATE.FAVORITE_LIBRARIES.TITLE'"
|
||||
subtitle="APP.BROWSE.LIBRARIES.EMPTY_STATE.FAVORITE_LIBRARIES.TEXT"
|
||||
>
|
||||
</adf-empty-content>
|
||||
/>
|
||||
</adf-custom-empty-content-template>
|
||||
|
||||
<data-columns>
|
||||
@@ -54,7 +53,7 @@
|
||||
[sortingKey]="column.sortingKey || column.key"
|
||||
>
|
||||
<ng-template let-context>
|
||||
<adf-dynamic-column [id]="column.template" [context]="context"> </adf-dynamic-column>
|
||||
<adf-dynamic-column [id]="column.template" [context]="context" />
|
||||
</ng-template>
|
||||
</data-column>
|
||||
</ng-container>
|
||||
@@ -72,8 +71,7 @@
|
||||
[sortable]="column.sortable"
|
||||
[isHidden]="column.isHidden"
|
||||
[sortingKey]="column.sortingKey || column.key"
|
||||
>
|
||||
</data-column>
|
||||
/>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
</data-columns>
|
||||
@@ -86,12 +84,11 @@
|
||||
(changePageNumber)="onChange($event)"
|
||||
(nextPage)="onChange($event)"
|
||||
(prevPage)="onChange($event)"
|
||||
>
|
||||
</adf-pagination>
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="aca-sidebar" *ngIf="infoDrawerOpened$ | async">
|
||||
<aca-info-drawer [node]="selection.last"></aca-info-drawer>
|
||||
<aca-info-drawer [node]="selection.last" />
|
||||
</div>
|
||||
</div>
|
||||
</aca-page-layout>
|
||||
|
Reference in New Issue
Block a user