mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-06-16 17:54:45 +00:00
parameters types
This commit is contained in:
parent
a2b022f507
commit
d5d548c9de
@ -121,12 +121,12 @@ export class SearchResultsRowComponent implements OnInit, OnDestroy {
|
|||||||
return this.node.entry.isFile;
|
return this.node.entry.isFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
showPreview(event) {
|
showPreview(event: MouseEvent) {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
this.store.dispatch(new ViewFileAction(this.node));
|
this.store.dispatch(new ViewFileAction(this.node));
|
||||||
}
|
}
|
||||||
|
|
||||||
navigate(event) {
|
navigate(event: MouseEvent) {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
this.store.dispatch(new NavigateToFolder(this.node));
|
this.store.dispatch(new NavigateToFolder(this.node));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user