Skip to content

Commit

Permalink
Merge pull request openwebwork#2200 from Alex-Jordan/status-order
Browse files Browse the repository at this point in the history
consistent order of hash keys
  • Loading branch information
pstaabp authored Aug 31, 2023
2 parents f9cf761 + 6f6d54c commit 8d0df7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
map { [
maketext($_) => $ce->{statuses}{$_}{abbrevs}[0],
$ce->{statuses}{$_}{abbrevs}[0] eq $value ? (selected => undef) : ()
] } keys %{ $ce->{statuses} }
] } sort(keys %{ $ce->{statuses} })
],
id => $fieldName . '_id', class => 'form-select form-select-sm w-auto flex-grow-0',
aria_labelledby => ($fieldName =~ s/^.*\.([^.]*)$/$1/r) . '_header' =%>
Expand Down

0 comments on commit 8d0df7b

Please sign in to comment.