mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-30 19:59:47 +02:00
[UBERF-41] Chat notification fixes (#3630)
Signed-off-by: Oleg Solodkov <oleg.solodkov@xored.com>
This commit is contained in:
@@ -105,7 +105,7 @@
|
||||
function isChanged (space: Space, docUpdates: Map<Ref<Doc>, DocUpdates>): boolean {
|
||||
const update = docUpdates.get(space._id)
|
||||
if (update === undefined) return false
|
||||
return update.txes.length > 0 && update.hidden !== true
|
||||
return update.txes.filter((tx) => tx.isNew).length > 0 && update.hidden !== true
|
||||
}
|
||||
|
||||
function getParentActions (): Action[] {
|
||||
|
||||
Reference in New Issue
Block a user