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
352
Merge Requests
54
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
9354105c
Commit
9354105c
authored
36 minutes ago
by
Ben Hayward
Browse files
Options
Download
Added in guid check for repeating post
parent
d185b744
fix/admin-firehose-1658
1 merge request
!703
[Sprint/VacantViper](fix) Live refresh of comments thread on entity change. #1658
Pipeline
#106853671
failed with stages
in 25 minutes and 44 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/app/modules/comments/thread/thread.component.ts
View file @
9354105c
...
...
@@ -323,7 +323,11 @@ export class CommentsThreadComponent implements OnInit {
// console.log('[comment:thread]: on changes', changes);
// reload on entity change.
if
(
changes
.
entity
&&
changes
.
entity
.
previousValue
)
{
if
(
changes
.
entity
&&
changes
.
entity
.
previousValue
&&
changes
.
entity
.
previousValue
.
guid
!==
changes
.
entity
.
currentValue
.
guid
)
{
this
.
load
(
true
);
}
}
...
...
This diff is collapsed.
Please
register
or
sign in
to comment