mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-08-07 17:48:54 +00:00
[ADF-1006] fix 'isEmpty' issue and code cleanup (#2053)
* fix 'isEmpty' issue and code cleanup * Update tsconfig.json
This commit is contained in:
committed by
Eugenio Romano
parent
9a04a78cff
commit
7336eef898
@@ -27,6 +27,7 @@ import { DocumentListComponent } from './../document-list.component';
|
||||
export class ContentColumnListComponent {
|
||||
|
||||
constructor(private documentList: DocumentListComponent) {
|
||||
console.log('ContentColumnListComponent is deprecated starting with 1.7.0 and may be removed in future versions. Use DataColumnListComponent instead.');
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -53,7 +53,9 @@ export class ContentColumnComponent implements OnInit, AfterContentInit, DataCol
|
||||
@Input('class')
|
||||
cssClass: string;
|
||||
|
||||
constructor(private list: ContentColumnListComponent) {}
|
||||
constructor(private list: ContentColumnListComponent) {
|
||||
console.log('ContentColumnComponent is deprecated starting with 1.7.0 and may be removed in future versions. Use DataColumnComponent instead.');
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
if (!this.srTitle && this.key === '$thumbnail') {
|
||||
|
Reference in New Issue
Block a user