Skip to content

Commit 77fc372

Browse files
authored
feat: Sort Cloud Code Jobs alphabetically (#2402)
1 parent c32efec commit 77fc372

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dashboard/Data/Jobs/Jobs.react.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ class Jobs extends TableView {
255255
}
256256
}
257257
if (data) {
258-
data = data.map((jobName) => {
258+
data = data.sort().map((jobName) => {
259259
return { jobName };
260260
});
261261
}

0 commit comments

Comments
 (0)