update osquery-table-details page script (#8362)

This commit is contained in:
Eric 2022-10-20 11:10:22 -05:00 committed by GitHub
parent 55bf0cea6a
commit 18c1719966
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ parasails.registerPage('osquery-table-details', {
mounted: async function() {
// sort the array of all tables
this.allTables = this.allTables.sort((a, b)=>{
if(a.name < b.name){
if(a.title < b.title){
return -1;
}
});