aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui-repolist.c10
1 files 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("<tr class='nohover'>");
- 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("<th class='left'>Links</th>");
+ html("<th class='left'>links</th>");
html("</tr>\n");
}