1
0
Fork 0
mirror of synced 2024-09-08 21:51:58 +12:00

Merge pull request #7923 from Budibase/bug/sev3/internal-table-sort

Allow sort type to change - Internal DB and REST query search
This commit is contained in:
Martin McKeaveney 2022-09-25 13:39:32 +01:00 committed by GitHub
commit 2aa7559880

View file

@ -136,14 +136,12 @@ export default class DataFetch {
}
// Determine what sort type to use
if (!this.options.sortType) {
let sortType = "string"
if (sortColumn) {
const type = schema?.[sortColumn]?.type
sortType = type === "number" ? "number" : "string"
}
this.options.sortType = sortType
let sortType = "string"
if (sortColumn) {
const type = schema?.[sortColumn]?.type
sortType = type === "number" ? "number" : "string"
}
this.options.sortType = sortType
// Build the lucene query
let query = this.options.query