[ADF-3041] - Task List Empty State Issue (#3408)

This commit is contained in:
camorra-skk 2018-05-30 15:59:24 +05:30 committed by Eugenio Romano
parent 08165d6fd4
commit 2bf82eeae2
2 changed files with 2 additions and 12 deletions

View File

@ -18,11 +18,3 @@ alfresco-datatable ::ng-deep .cell-value{
margin-left: calc((100% - 100px) / 2); margin-left: calc((100% - 100px) / 2);
margin-right: calc((100% - 100px) / 2); margin-right: calc((100% - 100px) / 2);
} }
.no-content-message {
font-size: 16px;
font-weight: bold;
text-align: center;
opacity: 0.54;
color: #000;
}

View File

@ -1,6 +1,5 @@
<div *ngIf="!requestNode">{{ 'ADF_TASK_LIST.FILTERS.MESSAGES.NONE' | translate }}</div> <div *ngIf="!requestNode">{{ 'ADF_TASK_LIST.FILTERS.MESSAGES.NONE' | translate }}</div>
<div *ngIf="requestNode"> <ng-container *ngIf="requestNode">
<div>
<adf-datatable <adf-datatable
[data]="data" [data]="data"
[sorting]="dataSort" [sorting]="dataSort"
@ -31,5 +30,4 @@
</ng-template> </ng-template>
</no-content-template> </no-content-template>
</adf-datatable> </adf-datatable>
</div> </ng-container>
</div>