diff --git a/website/scripts/build-static-content.js b/website/scripts/build-static-content.js index 67060ea9ac..02f437763d 100644 --- a/website/scripts/build-static-content.js +++ b/website/scripts/build-static-content.js @@ -704,7 +704,7 @@ module.exports = { } // Iterate through the columns of the table, we'll add a row to the markdown table element for each column in this schema table - for(let column of table.columns) { + for(let column of _.sortBy(table.columns, 'name')) { if(!column.hidden) { // If the column is hidden, we won't add it to the final table. // Create an object for this column to add to the osqueryTables config. let columnInfoForQueryReports = {