Skip to content

Commit

Permalink
mkdash: sort the data view as well
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Jun 10, 2024
1 parent 946a8ed commit 4ebc85a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mkdash.pl
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ sub now {
$year + 1900, $mon + 1, $mday, $hour, $min, $sec;
}

for my $s (keys %svg) {
for my $s (sort keys %svg) {
my $alt = $s;
$alt =~ s/-/ /g;
printf "<h2 style=\"clear: both;\">%s data</h2><a id=\"%s\" href=\"dash/%s\"><img alt=\"%s\" class=\"dash\" src=\"$dir/%s\" style=\"float: left;\"></a>\n",
Expand Down

0 comments on commit 4ebc85a

Please sign in to comment.