Skip to content

Commit 2bf468c

Browse files
committed
change order of folderdata
1 parent 0592f9d commit 2bf468c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_pages/slides.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Note: We respect that not all speakers want to share their slides. Please reach
1414
const folderdata = await folderresponse.json();
1515
let htmlString = '<ul>';
1616

17-
for (let folder of folderdata) {
17+
for (let folder of folderdata.reverse()) {
1818
htmlString += `<li><strong>Meetup date: ${folder.name}</strong></li>`;
1919
const fileresponse = await fetch('https://api.github.com/repos/CloudNativeLinz/cloudnativelinz.github.io/contents/slides/'+folder.name);
2020
const filedata = await fileresponse.json();

0 commit comments

Comments
 (0)