mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
fix image paths for components (#1696)
* fix Login image paths * fix TaskList image paths * fix DocumentList image paths * fix Search image paths
This commit is contained in:
committed by
Mario Romano
parent
cf85840350
commit
5b5916bfb1
@@ -52,10 +52,10 @@ export class DocumentListComponent implements OnInit, OnChanges, AfterContentIni
|
||||
static DOUBLE_CLICK_NAVIGATION: string = 'dblclick';
|
||||
static DEFAULT_PAGE_SIZE: number = 20;
|
||||
|
||||
baseComponentPath = module.id.replace('/components/document-list.component.js', '');
|
||||
baseComponentPath = module.id.replace('components/document-list.component.js', '');
|
||||
|
||||
@Input()
|
||||
fallbackThumbnail: string = this.baseComponentPath + '/assets/images/ft_ic_miscellaneous.svg';
|
||||
fallbackThumbnail: string = this.baseComponentPath + 'assets/images/ft_ic_miscellaneous.svg';
|
||||
|
||||
@Input()
|
||||
navigate: boolean = true;
|
||||
@@ -87,6 +87,9 @@ export class DocumentListComponent implements OnInit, OnChanges, AfterContentIni
|
||||
@Input()
|
||||
pageSize: number = DocumentListComponent.DEFAULT_PAGE_SIZE;
|
||||
|
||||
@Input()
|
||||
emptyFolderImageUrl: string = this.baseComponentPath + 'assets/images/empty_doc_lib.svg';
|
||||
|
||||
skipCount: number = 0;
|
||||
|
||||
pagination: Pagination;
|
||||
|
Reference in New Issue
Block a user