mirror of
https://github.com/hcengineering/platform.git
synced 2025-01-08 21:27:45 +03:00
Query update doc fix (#2169)
This commit is contained in:
parent
0f87f42706
commit
07f25de59f
@ -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) {
|
||||
|
@ -66,8 +66,8 @@
|
||||
"NoDoneState": "Не завершено",
|
||||
"ManageStatusesWithin": "Управление статусами для",
|
||||
"ManageProjectStatues": "Управление статусами задачи",
|
||||
"UnarchiveConfirm": "Вы действительно хотите архивировать?",
|
||||
"ArchiveConfirm": "Вы действительно хотите разархивировать?",
|
||||
"UnarchiveConfirm": "Вы действительно хотите разархивировать?",
|
||||
"ArchiveConfirm": "Вы действительно хотите архивировать?",
|
||||
"StatusDelete": "Удалить статус",
|
||||
"StatusDeleteConfirm": "Вы действительно хотите удалить этот статус?",
|
||||
"CantStatusDelete": "Невозможно удалить статус",
|
||||
|
Loading…
Reference in New Issue
Block a user