diff --git a/projects/aca-content/src/lib/components/common/location-link/location-link.component.ts b/projects/aca-content/src/lib/components/common/location-link/location-link.component.ts index 14187c7c6..ed379ea9b 100644 --- a/projects/aca-content/src/lib/components/common/location-link/location-link.component.ts +++ b/projects/aca-content/src/lib/components/common/location-link/location-link.component.ts @@ -37,9 +37,10 @@ import { TranslatePipe } from '@ngx-translate/core'; selector: 'aca-location-link', template: ` @@ -72,7 +73,8 @@ export class LocationLinkComponent implements OnInit { this.getTooltip(this._path); } - goToLocation() { + goToLocation(event: Event) { + event.preventDefault(); if (this.context) { const node: NodeEntry = this.context.row.node; this.store.dispatch(new NavigateToParentFolder(node));