mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-23 11:31:57 +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) {
|
if (groupValue === undefined) {
|
||||||
return undefined
|
return undefined
|
||||||
}
|
}
|
||||||
|
if ((doc as any)[groupByKey] === groupValue) {
|
||||||
|
return
|
||||||
|
}
|
||||||
return {
|
return {
|
||||||
[groupByKey]: groupValue,
|
[groupByKey]: groupValue,
|
||||||
space: doc.space
|
space: doc.space
|
||||||
|
@ -235,6 +235,9 @@
|
|||||||
if (groupValue === undefined) {
|
if (groupValue === undefined) {
|
||||||
return undefined
|
return undefined
|
||||||
}
|
}
|
||||||
|
if ((doc as any)[groupByKey] === groupValue) {
|
||||||
|
return
|
||||||
|
}
|
||||||
return {
|
return {
|
||||||
[groupByKey]: groupValue,
|
[groupByKey]: groupValue,
|
||||||
space: doc.space
|
space: doc.space
|
||||||
|
Loading…
Reference in New Issue
Block a user