Fix query clone respect mixins (#1631)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2022-05-04 20:54:32 +06:00
committed by GitHub
parent dfbf2d5263
commit e4e2af93dc
12 changed files with 3053 additions and 5296 deletions
+1 -1
View File
@@ -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 ?? {})