disable client-side sorting in explore tables.

This commit is contained in:
Jason Kulatunga 2023-08-14 17:50:21 -06:00
parent b3a173df01
commit 936af443bd
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ export class ListGenericResourceComponent implements OnInit, ResourceListCompone
renderList(resourceList: ResourceFhir[]){ renderList(resourceList: ResourceFhir[]){
console.log("GENERIC RESOURCE RENDERLSIT") console.log("GENERIC RESOURCE RENDERLSIT")
this.columns = this.columnDefinitions.map((defn) => { this.columns = this.columnDefinitions.map((defn) => {
let column = {name: defn.title, prop: defn.title.replace(/[^A-Z0-9]/ig, "_")} let column = {name: defn.title, prop: defn.title.replace(/[^A-Z0-9]/ig, "_"), sortable: false}
return column return column
}) })