Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
374
Merge Requests
57
CI / CD
Security & Compliance
Packages
Analytics
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
4b09ea94
Commit
4b09ea94
authored
3 hours ago
by
Mark Harding
Browse files
Options
Download
(fix): if no event then bypass stopping propogation
parent
5d388d6a
feat/2511-activity-v2
No related merge requests found
Pipeline
#114483139
failed with stages
in 6 minutes and 36 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/app/modules/newsfeed/activity/content/content.component.ts
View file @
4b09ea94
...
...
@@ -97,8 +97,10 @@ export class ActivityContentComponent {
}
onModalRequested
(
event
:
MouseEvent
)
{
event
.
preventDefault
();
event
.
stopPropagation
();
if
(
event
)
{
event
.
preventDefault
();
event
.
stopPropagation
();
}
this
.
entity
.
modal_source_url
=
this
.
router
.
url
;
...
...
This diff is collapsed.
Please
register
or
sign in
to comment