[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:
suzanadirla
2017-11-25 07:36:22 +02:00
committed by Cilibiu Bogdan
parent 1dcd4ef6ea
commit ac7a33e454
2 changed files with 45 additions and 10 deletions

View File

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