mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACA-865] [Destination picker] Symlinks to folders should not appear … (#84)
* [ACA-865] [Destination picker] Symlinks to folders should not appear in the destination picker * [ACA-865] added tests for fix to not show Symlinks in the destination picker * [ACA-865] fix failing test
This commit is contained in:
committed by
Cilibiu Bogdan
parent
1dcd4ef6ea
commit
ac7a33e454
@@ -419,7 +419,7 @@ export class NodeActionsService {
|
||||
// todo: review once 1.10-beta6 is out
|
||||
private rowFilter(row: /*ShareDataRow*/ any): boolean {
|
||||
const node: MinimalNodeEntryEntity = row.node.entry;
|
||||
return (!node.isFile);
|
||||
return (!node.isFile && (node.nodeType !== 'app:folderlink'));
|
||||
}
|
||||
|
||||
// todo: review once 1.10-beta6 is out
|
||||
|
Reference in New Issue
Block a user