Skip to content

Commit c47fe34

Browse files
authored
fix: include punctuation when tablesorting (#9855)
1 parent fff706d commit c47fe34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ietf/static/js/list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function text_sort(a, b, options) {
1616
// sort by text content
1717
return prep(a, options).localeCompare(prep(b, options), "en", {
1818
sensitivity: "base",
19-
ignorePunctuation: true,
19+
ignorePunctuation: false,
2020
numeric: true
2121
});
2222
}

0 commit comments

Comments
 (0)