diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2015-03-05 04:18:42 +0300 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2015-03-05 04:32:13 +0300 |
commit | bd24832cd7a72117afb7fa785f4e6bfa4324bf30 (patch) | |
tree | 88da55b85154484c45b98b8dad560c3ff117a6dd /ui-summary.c | |
parent | db9a70b159a107da29f88865d63ba14dd127556f (diff) |
cgit: show clone URLs for empty repo
Diffstat (limited to 'ui-summary.c')
-rw-r--r-- | ui-summary.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-summary.c b/ui-summary.c index 46ca713..fa5ba04 100644 --- a/ui-summary.c +++ b/ui-summary.c @@ -28,7 +28,7 @@ static void print_url(const char *url) if (urls++ == 0) { htmlf("<tr class='nohover'><td colspan='%d'> </td></tr>", columns); - htmlf("<tr><th class='left' colspan='%d'>Clone</th></tr>\n", columns); + htmlf("<tr class='nohover'><th class='left' colspan='%d'>Clone</th></tr>\n", columns); } htmlf("<tr><td colspan='%d'><a rel='vcs-git' href='", columns); |