Skip to content

Commit

Permalink
feat: Sort Cloud Code Jobs alphabetically (parse-community#2402)
Browse files Browse the repository at this point in the history
  • Loading branch information
dplewis authored Mar 7, 2023
1 parent c32efec commit 77fc372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dashboard/Data/Jobs/Jobs.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ class Jobs extends TableView {
}
}
if (data) {
data = data.map((jobName) => {
data = data.sort().map((jobName) => {
return { jobName };
});
}
Expand Down

0 comments on commit 77fc372

Please sign in to comment.