Skip to content

Commit

Permalink
mkdash: sort the ids to make the graph order stable
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Jun 10, 2024
1 parent b6ff79f commit 946a8ed
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 @@ -17,7 +17,7 @@
TOP
;

for my $s (keys %svg) {
for my $s (sort keys %svg) {
my $alt = $s;
$alt =~ s/-/ /g;
printf "<a id=\"%s\" href=\"dashboard1.html#%s\"><img alt=\"%s\" class=\"dash\" src=\"$dir/%s\"></a>\n",
Expand Down

0 comments on commit 946a8ed

Please sign in to comment.