File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
Revision history for perl distribution Convos
2
2
3
+ 5.25 Not Released
4
+ - Entering "+" in the quick search bar will show conversation with unread messages
5
+
3
6
5.24 2021-02-11T09:30:00+0900
4
7
- Will not show participants in sidebar if already visible on the right side
5
8
- Will not jump to the first conversation when leaving a conversation
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ function filterNav() {
54
54
55
55
// Show and hide navigation links
56
56
for (let p = 0 ; p < prefix .length ; p++ ) {
57
- const filterRe = new RegExp (prefix[p] + regexpEscape (filter), ' i' );
57
+ const filterRe = filter == ' + ' ? new RegExp ( / [ 1-9 ] \d * \s * $ / ) : new RegExp (prefix[p] + regexpEscape (filter), ' i' );
58
58
const seen = {};
59
59
q (navEl, ' a' , (aEl , i ) => {
60
60
const aClassList = aEl .classList ;
You can’t perform that action at this time.
0 commit comments