mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-21 17:17:54 +02:00
Fix query clone respect mixins (#1631)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
@@ -160,7 +160,7 @@ function ShowPopup (
|
||||
props?: Record<string, any>
|
||||
}
|
||||
): void {
|
||||
const docs = Array.isArray(doc) ? doc : [doc]
|
||||
const docs = Array.isArray(doc) ? doc : doc !== undefined ? [doc] : []
|
||||
evt.preventDefault()
|
||||
let cprops = {
|
||||
...(props?.props ?? {})
|
||||
|
||||
Reference in New Issue
Block a user