File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
main/resources/web/lib/components/extensions-picker
test/java/io/quarkus/code Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ interface ExtensionFieldIdentifier {
12
12
}
13
13
14
14
const HIDE_FILTER_PREDICATE = ( key : string ) => [ ] . includes ( key ) ;
15
- const RADIO_FILTER_PREDICATE = ( key : string ) => [ 'platform' ] . includes ( key ) ;
15
+ const RADIO_FILTER_PREDICATE = ( key : string ) => [ 'platform' , 'category' ] . includes ( key ) ;
16
16
const OPTIONAL_FILTER_PREDICATE = ( key : string ) => key === 'support' || key . endsWith ( '-support' ) ;
17
17
18
18
// FOR SHORTCUT KEYS, MAKE SURE IT IS AFTER THE FULL KEY (REPLACE IS TAKING THE FIRST)
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ public void testSearchFilters() {
195
195
196
196
page .waitForSelector (LABEL_TOGGLE_SEARCH_COMBO .formatted ("category" )).click ();
197
197
page .waitForSelector ("[aria-label='Add category:data filter']" ).click ();
198
- assertThat (searchInput .inputValue ().trim ()).isEqualTo ("status:experimental category:web, data" );
198
+ assertThat (searchInput .inputValue ().trim ()).isEqualTo ("category:data status:experimental " );
199
199
200
200
page .waitForSelector (LABEL_TOGGLE_SEARCH_COMBO .formatted ("category" )).click ();
201
201
page .waitForSelector ("[aria-label='Drop category filter']" ).click ();
You can’t perform that action at this time.
0 commit comments