mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
[ACA-1043] Document List - Move and Delete actions are missing (#115)
This commit is contained in:
parent
da5514bdfb
commit
02b38d3050
@ -110,10 +110,10 @@ export class FilesComponent extends PageComponent implements OnInit, OnDestroy {
|
||||
|
||||
fetchNodes(parentNodeId?: string, options: any = {}): Observable<NodePaging> {
|
||||
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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user