File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -353,7 +353,7 @@ function SwitcherApp() {
353353 const words = query . toLowerCase ( ) . split ( / \s + / ) . filter ( Boolean ) ;
354354 return allItems . filter ( ( s ) => {
355355 const prInfo = prLinks [ s . sessionId ] ;
356- const searchTarget = `${ s . projectName } ${ s . project } ${ s . firstUserMessage } ${ s . lastUserMessage } ${ customTitles [ s . sessionId ] || '' } ${ branches [ s . sessionId ] || '' } ${ prInfo ? `PR #${ prInfo . prNumber } ` : '' } ${ assistantResponses [ s . sessionId ] || '' } ` . toLowerCase ( ) ;
356+ const searchTarget = `${ s . projectName } ${ s . project } ${ s . firstUserMessage } ${ s . lastUserMessage } ${ customTitles [ s . sessionId ] || '' } ${ branches [ s . sessionId ] || '' } ${ prInfo ? `PR #${ prInfo . prNumber } ${ prInfo . prUrl } ` : '' } ${ assistantResponses [ s . sessionId ] || '' } ` . toLowerCase ( ) ;
357357 return words . every ( ( w : string ) => searchTarget . includes ( w ) ) ;
358358 } ) ;
359359 } ;
You can’t perform that action at this time.
0 commit comments