mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-19 17:14:45 +00:00
[ACA-1169] Default location of the copy/move file is not displayed (#211)
fix for https://issues.alfresco.com/jira/browse/ACA-1169
This commit is contained in:
parent
14c9995915
commit
267ba27635
@ -145,7 +145,7 @@ export class NodeActionsService {
|
||||
return !notAllowedNode;
|
||||
}
|
||||
|
||||
getEntryParentId(nodeEntry: any) {
|
||||
getEntryParentId(nodeEntry: MinimalNodeEntryEntity) {
|
||||
let entryParentId = '';
|
||||
|
||||
if (nodeEntry.parentId) {
|
||||
@ -159,7 +159,7 @@ export class NodeActionsService {
|
||||
}
|
||||
|
||||
getContentNodeSelection(action: string, contentEntities: MinimalNodeEntity[]): Subject<MinimalNodeEntryEntity[]> {
|
||||
const currentParentFolderId = this.getEntryParentId(contentEntities[0]);
|
||||
const currentParentFolderId = this.getEntryParentId(contentEntities[0].entry);
|
||||
|
||||
const customDropdown: SitePaging = {
|
||||
list: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user