mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
#384 fix compilation problem
This commit is contained in:
parent
8775ec7c31
commit
eba89de1c2
@ -33,10 +33,6 @@ export class DocumentListBreadcrumb {
|
|||||||
|
|
||||||
private _currentFolderPath: string = '/';
|
private _currentFolderPath: string = '/';
|
||||||
|
|
||||||
get currentFolderPath(): string {
|
|
||||||
return this._currentFolderPath;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Input()
|
@Input()
|
||||||
set currentFolderPath(val: string) {
|
set currentFolderPath(val: string) {
|
||||||
if (this._currentFolderPath !== val) {
|
if (this._currentFolderPath !== val) {
|
||||||
@ -54,6 +50,10 @@ export class DocumentListBreadcrumb {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get currentFolderPath(): string {
|
||||||
|
return this._currentFolderPath;
|
||||||
|
}
|
||||||
|
|
||||||
@Input()
|
@Input()
|
||||||
target: DocumentList;
|
target: DocumentList;
|
||||||
|
|
||||||
|
@ -129,10 +129,6 @@ export class DocumentList implements OnInit, AfterContentInit {
|
|||||||
|
|
||||||
private _path = this.DEFAULT_ROOT_FOLDER;
|
private _path = this.DEFAULT_ROOT_FOLDER;
|
||||||
|
|
||||||
get currentFolderPath(): string {
|
|
||||||
return this._path;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Input()
|
@Input()
|
||||||
set currentFolderPath(value: string) {
|
set currentFolderPath(value: string) {
|
||||||
if (value !== this._path) {
|
if (value !== this._path) {
|
||||||
@ -148,6 +144,10 @@ export class DocumentList implements OnInit, AfterContentInit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get currentFolderPath(): string {
|
||||||
|
return this._path;
|
||||||
|
}
|
||||||
|
|
||||||
errorMessage;
|
errorMessage;
|
||||||
actions: ContentActionModel[] = [];
|
actions: ContentActionModel[] = [];
|
||||||
emptyFolderTemplate: TemplateRef<any>;
|
emptyFolderTemplate: TemplateRef<any>;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user