mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-23 03:22:19 +03:00
Fix kanban update (#3010)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
This commit is contained in:
parent
da6713e51d
commit
5f0566bb9f
@ -208,6 +208,9 @@
|
||||
if (groupValue === undefined) {
|
||||
return undefined
|
||||
}
|
||||
if ((doc as any)[groupByKey] === groupValue) {
|
||||
return
|
||||
}
|
||||
return {
|
||||
[groupByKey]: groupValue,
|
||||
space: doc.space
|
||||
|
@ -235,6 +235,9 @@
|
||||
if (groupValue === undefined) {
|
||||
return undefined
|
||||
}
|
||||
if ((doc as any)[groupByKey] === groupValue) {
|
||||
return
|
||||
}
|
||||
return {
|
||||
[groupByKey]: groupValue,
|
||||
space: doc.space
|
||||
|
Loading…
Reference in New Issue
Block a user