]> git.ipfire.org Git - thirdparty/public-inbox.git/commitdiff
repobrowse: do not bold directory names in tree view
authorEric Wong <e@80x24.org>
Thu, 7 Apr 2016 00:00:19 +0000 (00:00 +0000)
committerEric Wong <e@80x24.org>
Thu, 7 Apr 2016 00:00:19 +0000 (00:00 +0000)
This should increase visibility of actual executable files

lib/PublicInbox/RepobrowseGitTree.pm

index ceb28910fc482d216ab700f8085c8de9f2010fd5..b7dd101e0a0773cded47dcdfd8f7237eaab797bf 100644 (file)
@@ -175,7 +175,7 @@ sub git_tree_show {
                        $fh->write('g' . (' ' x 18) . "$path @ $x\n");
                        next;
                }
-               elsif ($m eq 'd') { $path = "<b>$path/</b>" }
+               elsif ($m eq 'd') { $path = "$path/" }
                elsif ($m eq 'x') { $path = "<b>$path</b>" }
                elsif ($m eq 'l') { $path = "<i>$path</i>" }
                $s =~ s/\s+//g;