Skip to content

Commit

Permalink
Set args.selected as optional (#1650)
Browse files Browse the repository at this point in the history
  • Loading branch information
johanrd authored Jan 17, 2024
1 parent 1bae57e commit 41ca769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ember-power-select/src/components/power-select.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export interface PowerSelectArgs {
noMatchesMessageComponent?: string | ComponentLike<any>;
matchTriggerWidth?: boolean;
options?: any[] | PromiseProxy<any[]>;
selected: any | PromiseProxy<any>;
selected?: any | PromiseProxy<any>;
destination?: string;
closeOnSelect?: boolean;
renderInPlace?: boolean;
Expand Down

0 comments on commit 41ca769

Please sign in to comment.