File tree Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ export function toAction(props: { id: string; label: string; enabled?: boolean;
264
264
label : props . label ,
265
265
class : props . class ,
266
266
enabled : props . enabled ?? true ,
267
- checked : props . checked ?? false ,
267
+ checked : props . checked ,
268
268
run : async ( ...args : unknown [ ] ) => props . run ( ...args ) ,
269
269
tooltip : props . label
270
270
} ;
Original file line number Diff line number Diff line change @@ -57,7 +57,6 @@ export class SettingsSearchFilterDropdownMenuActionViewItem extends DropdownMenu
57
57
tooltip,
58
58
class : undefined ,
59
59
enabled : true ,
60
- checked : false ,
61
60
run : ( ) => { this . doSearchWidgetAction ( queryToAppend , triggerSuggest ) ; }
62
61
} ;
63
62
}
Original file line number Diff line number Diff line change @@ -230,7 +230,6 @@ class FiltersDropdownMenuActionViewItem extends DropdownMenuActionViewItem {
230
230
tooltip : ''
231
231
} ,
232
232
{
233
- checked : false ,
234
233
class : undefined ,
235
234
enabled : this . testService . excluded . hasAny ,
236
235
id : 'removeExcluded' ,
You can’t perform that action at this time.
0 commit comments