replace 'template' with 'ng-template' (#2167)

This commit is contained in:
Denys Vuika
2017-08-02 14:27:59 +01:00
committed by Eugenio Romano
parent ae11297a90
commit 7b11fc24ac
2 changed files with 5 additions and 5 deletions

View File

@@ -96,9 +96,9 @@
title="{{'DOCUMENT_LIST.COLUMNS.TAG' | translate}}" title="{{'DOCUMENT_LIST.COLUMNS.TAG' | translate}}"
key="id" key="id"
class="full-width ellipsis-cell"> class="full-width ellipsis-cell">
<template let-entry="$implicit"> <ng-template let-entry="$implicit">
<alfresco-tag-node-list [nodeId]="entry.data.getValue(entry.row, entry.col)"></alfresco-tag-node-list> <alfresco-tag-node-list [nodeId]="entry.data.getValue(entry.row, entry.col)"></alfresco-tag-node-list>
</template> </ng-template>
</data-column> </data-column>
--> -->
<data-column <data-column

View File

@@ -45,9 +45,9 @@
[enablePagination]="false" [enablePagination]="false"
data-automation-id="content-node-selector-document-list"> data-automation-id="content-node-selector-document-list">
<empty-folder-content> <empty-folder-content>
<template> <ng-template>
<div>{{ 'NODE_SELECTOR.NO_RESULTS' | translate }}</div> <div>{{ 'NODE_SELECTOR.NO_RESULTS' | translate }}</div>
</template> </ng-template>
</empty-folder-content> </empty-folder-content>
</adf-document-list> </adf-document-list>
</div> </div>
@@ -70,4 +70,4 @@
data-automation-id="content-node-selector-actions-choose">{{ 'NODE_SELECTOR.CHOOSE' | translate }} data-automation-id="content-node-selector-actions-choose">{{ 'NODE_SELECTOR.CHOOSE' | translate }}
</button> </button>
</footer> </footer>