From 41ca76958355e3c849b494687cad694ad3dd0c20 Mon Sep 17 00:00:00 2001 From: johanrd Date: Wed, 17 Jan 2024 15:58:35 +0100 Subject: [PATCH] Set args.selected as optional (#1650) --- ember-power-select/src/components/power-select.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ember-power-select/src/components/power-select.ts b/ember-power-select/src/components/power-select.ts index 531453534..36d700368 100644 --- a/ember-power-select/src/components/power-select.ts +++ b/ember-power-select/src/components/power-select.ts @@ -67,7 +67,7 @@ export interface PowerSelectArgs { noMatchesMessageComponent?: string | ComponentLike; matchTriggerWidth?: boolean; options?: any[] | PromiseProxy; - selected: any | PromiseProxy; + selected?: any | PromiseProxy; destination?: string; closeOnSelect?: boolean; renderInPlace?: boolean;