Fix types
This commit is contained in:
parent
57c4663663
commit
a2730279d4
|
@ -212,7 +212,7 @@ if (descriptions.length) {
|
||||||
const inMemoryQuery: RequiredKeys<
|
const inMemoryQuery: RequiredKeys<
|
||||||
Omit<RowSearchParams, "tableId">
|
Omit<RowSearchParams, "tableId">
|
||||||
> = {
|
> = {
|
||||||
sort: this.query.sort,
|
sort: this.query.sort ?? undefined,
|
||||||
query: { ...this.query.query },
|
query: { ...this.query.query },
|
||||||
paginate: this.query.paginate,
|
paginate: this.query.paginate,
|
||||||
bookmark: this.query.bookmark ?? undefined,
|
bookmark: this.query.bookmark ?? undefined,
|
||||||
|
|
Loading…
Reference in New Issue