We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c71366 commit a209512Copy full SHA for a209512
src/views/runs.rs
@@ -19,7 +19,7 @@ pub fn Runs() -> Element {
19
div {
20
h1 { class: "m-y-2 text-4xl text-white", "Runs" }
21
table { class: "w-full border-collapse",
22
- {runs.iter().enumerate().map(|(i, run)| rsx! {
+ {runs.iter().rev().enumerate().map(|(i, run)| rsx! {
23
tr { class: "w-full border-probe-rs-green border-solid border-[1px] hover:bg-slate-600 rounded-sm text-probe-rs-green",
24
RunListEntry { run: run.clone(), odd: i % 2 != 0 }
25
}
0 commit comments