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:
commit
2aa7559880
|
@ -136,14 +136,12 @@ export default class DataFetch {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Determine what sort type to use
|
// Determine what sort type to use
|
||||||
if (!this.options.sortType) {
|
|
||||||
let sortType = "string"
|
let sortType = "string"
|
||||||
if (sortColumn) {
|
if (sortColumn) {
|
||||||
const type = schema?.[sortColumn]?.type
|
const type = schema?.[sortColumn]?.type
|
||||||
sortType = type === "number" ? "number" : "string"
|
sortType = type === "number" ? "number" : "string"
|
||||||
}
|
}
|
||||||
this.options.sortType = sortType
|
this.options.sortType = sortType
|
||||||
}
|
|
||||||
|
|
||||||
// Build the lucene query
|
// Build the lucene query
|
||||||
let query = this.options.query
|
let query = this.options.query
|
||||||
|
|
Loading…
Reference in New Issue