File tree 1 file changed +5
-5
lines changed
client/src/app/pages/search/components
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -117,25 +117,25 @@ function useAllEntities(filterText: string, disableSearch: boolean) {
117
117
typeColor : "orange" ,
118
118
} ) ) ;
119
119
120
- const filterTextLoweCase = filterText . toLowerCase ( ) ;
120
+ const filterTextLowerCase = filterText . toLowerCase ( ) ;
121
121
122
122
const list = [
123
123
...transformedVulnerabilities ,
124
124
...transformedSboms ,
125
125
...transformedAdvisories ,
126
126
...transformedPackages ,
127
127
] . sort ( ( a , b ) => {
128
- if ( a . title ?. includes ( filterTextLoweCase ) ) {
128
+ if ( a . title ?. includes ( filterTextLowerCase ) ) {
129
129
return - 1 ;
130
- } else if ( b . title ?. includes ( filterTextLoweCase ) ) {
130
+ } else if ( b . title ?. includes ( filterTextLowerCase ) ) {
131
131
return 1 ;
132
132
} else {
133
133
const aIndex = ( a . description || "" )
134
134
. toLowerCase ( )
135
- . indexOf ( filterTextLoweCase ) ;
135
+ . indexOf ( filterTextLowerCase ) ;
136
136
const bIndex = ( b . description || "" )
137
137
. toLowerCase ( )
138
- . indexOf ( filterTextLoweCase ) ;
138
+ . indexOf ( filterTextLowerCase ) ;
139
139
return aIndex - bIndex ;
140
140
}
141
141
} ) ;
You can’t perform that action at this time.
0 commit comments