TSK-1086: Fix merge (#2961)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2023-04-12 19:54:54 +07:00
committed by GitHub
parent 08621c4bc1
commit 341aa4dbfb
9 changed files with 75 additions and 28 deletions
@@ -23,7 +23,7 @@
const notificationClient = NotificationClientImpl.getClient()
const lastViews = notificationClient.getLastViews()
$: lastView = ($lastViews as any)[value._id]
$: lastView = (($lastViews as any) ?? {})[value._id]
$: hasNotification = lastView !== undefined && lastView !== -1 && lastView < value.modifiedOn
</script>