From d366ec1e1e796937387208ef8c26097e5ff44ae9 Mon Sep 17 00:00:00 2001 From: la-ninpre Date: Sun, 6 Dec 2020 22:23:24 +0300 Subject: ui-repolist: make table headers lowercase >:( --- ui-repolist.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ui-repolist.c b/ui-repolist.c index 529a203..9a9c1a2 100644 --- a/ui-repolist.c +++ b/ui-repolist.c @@ -143,13 +143,13 @@ static void print_sort_header(const char *title, const char *sort) static void print_header(void) { html(""); - print_sort_header("Name", "name"); - print_sort_header("Description", "desc"); + print_sort_header("name", "name"); + print_sort_header("description", "desc"); if (ctx.cfg.enable_index_owner) - print_sort_header("Owner", "owner"); - print_sort_header("Idle", "idle"); + print_sort_header("owner", "owner"); + print_sort_header("idle", "idle"); if (ctx.cfg.enable_index_links) - html("Links"); + html("links"); html("\n"); } -- cgit v1.2.3