mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2026-09-09 18:02:54 +00:00
filter out folder links (#1314)
This commit is contained in:
committed by
Adina Parpalita
parent
8603d13f71
commit
34c559c7d5
@@ -161,6 +161,8 @@ export class NodeTemplateService {
|
|||||||
|
|
||||||
private rowFilter(row: ShareDataRow): boolean {
|
private rowFilter(row: ShareDataRow): boolean {
|
||||||
const node: MinimalNodeEntryEntity = row.node.entry;
|
const node: MinimalNodeEntryEntity = row.node.entry;
|
||||||
return node.nodeType !== 'app:filelink';
|
return (
|
||||||
|
node.nodeType !== 'app:filelink' && node.nodeType !== 'app:folderlink'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user