From 48070e4a9952a57eb03a56199ccb5193e0d99055 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sat, 18 May 2019 12:34:18 +0100 Subject: Fix the table headers on the Branches page Date and Commit were the wrong way around. --- guix-data-service/web/view/html.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guix-data-service/web/view/html.scm b/guix-data-service/web/view/html.scm index 510da9d..4e8e785 100644 --- a/guix-data-service/web/view/html.scm +++ b/guix-data-service/web/view/html.scm @@ -638,8 +638,8 @@ (thead (tr (th (@ (class "col-md-3")) "Name") - (th (@ (class "col-md-3")) "Commit") - (th (@ (class "col-md-3")) "Date"))) + (th (@ (class "col-md-3")) "Date") + (th (@ (class "col-md-3")) "Commit"))) (tbody ,@(map (match-lambda -- cgit v1.2.3