Skip to content

Commit

Permalink
disable client-side sorting in explore tables.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Aug 14, 2023
1 parent b3a173d commit 936af44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export class ListGenericResourceComponent implements OnInit, ResourceListCompone
renderList(resourceList: ResourceFhir[]){
console.log("GENERIC RESOURCE RENDERLSIT")
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
})

Expand Down

0 comments on commit 936af44

Please sign in to comment.