Query update doc fix (#2169)

This commit is contained in:
Denis Bykhov 2022-06-29 17:47:40 +06:00 committed by GitHub
parent 0f87f42706
commit 07f25de59f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -356,7 +356,7 @@ export class LiveQuery extends TxProcessor implements Client {
if (updatedDoc.modifiedOn > tx.modifiedOn) return
if (updatedDoc.modifiedOn === tx.modifiedOn) {
const current = await this.findOne(q._class, { _id: updatedDoc._id }, q.options)
if (current !== undefined) {
if (current !== undefined && this.match(q, current)) {
q.result[pos] = current
} else {
if (q.options?.limit === q.result.length) {

View File

@ -66,8 +66,8 @@
"NoDoneState": "Не завершено",
"ManageStatusesWithin": "Управление статусами для",
"ManageProjectStatues": "Управление статусами задачи",
"UnarchiveConfirm": "Вы действительно хотите архивировать?",
"ArchiveConfirm": "Вы действительно хотите разархивировать?",
"UnarchiveConfirm": "Вы действительно хотите разархивировать?",
"ArchiveConfirm": "Вы действительно хотите архивировать?",
"StatusDelete": "Удалить статус",
"StatusDeleteConfirm": "Вы действительно хотите удалить этот статус?",
"CantStatusDelete": "Невозможно удалить статус",