diff options
author | Yigit Sever | 2021-10-29 08:07:01 +0000 |
---|---|---|
committer | Yigit Sever | 2021-10-29 11:15:11 +0300 |
commit | ecd1260017d23128f7b37289be901e0fbb888992 (patch) | |
tree | 77c2bbdc33512bd558cc79c8b668869972e3914b /ui-repolist.c | |
parent | b00972235a9e2250610bb6f861a6e88d30d5a126 (diff) | |
download | cgit-ecd1260017d23128f7b37289be901e0fbb888992.tar.gz cgit-ecd1260017d23128f7b37289be901e0fbb888992.tar.bz2 cgit-ecd1260017d23128f7b37289be901e0fbb888992.zip |
Lowercase everything, Rosé Pine, click to copy
And probably other little things I forgot about
Diffstat (limited to 'ui-repolist.c')
-rw-r--r-- | ui-repolist.c | 10 |
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) | |||
143 | static void print_header(void) | 143 | static void print_header(void) |
144 | { | 144 | { |
145 | html("<tr class='nohover'>"); | 145 | html("<tr class='nohover'>"); |
146 | print_sort_header("Name", "name"); | 146 | print_sort_header("name", "name"); |
147 | print_sort_header("Description", "desc"); | 147 | print_sort_header("description", "desc"); |
148 | if (ctx.cfg.enable_index_owner) | 148 | if (ctx.cfg.enable_index_owner) |
149 | print_sort_header("Owner", "owner"); | 149 | print_sort_header("owner", "owner"); |
150 | print_sort_header("Idle", "idle"); | 150 | print_sort_header("idle", "idle"); |
151 | if (ctx.cfg.enable_index_links) | 151 | if (ctx.cfg.enable_index_links) |
152 | html("<th class='left'>Links</th>"); | 152 | html("<th class='left'>links</th>"); |
153 | html("</tr>\n"); | 153 | html("</tr>\n"); |
154 | } | 154 | } |
155 | 155 | ||