[ACA-1043] Document List - Move and Delete actions are missing (#115)

This commit is contained in:
Cilibiu Bogdan 2017-12-06 07:59:40 +02:00 committed by Denys Vuika
parent da5514bdfb
commit 02b38d3050

View File

@ -110,10 +110,10 @@ export class FilesComponent extends PageComponent implements OnInit, OnDestroy {
fetchNodes(parentNodeId?: string, options: any = {}): Observable<NodePaging> { fetchNodes(parentNodeId?: string, options: any = {}): Observable<NodePaging> {
const defaults = { const defaults = {
include: [ 'isLocked' ] include: [ 'isLocked', 'path', 'properties', 'allowableOperations' ]
}; };
const queryOptions = Object.assign(defaults, options); const queryOptions = Object.assign({}, defaults, options);
return this.nodesApi.getNodeChildren(parentNodeId, queryOptions); return this.nodesApi.getNodeChildren(parentNodeId, queryOptions);
} }