#384 fix compilation problem

This commit is contained in:
mauriziovitale84 2016-12-06 16:57:18 +00:00
parent 8775ec7c31
commit eba89de1c2
2 changed files with 8 additions and 8 deletions

View File

@ -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;

View File

@ -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>;