From ac1cde61c9b1f2e337d635e8de993fdf36a901ae Mon Sep 17 00:00:00 2001 From: johanrd Date: Sat, 6 Jan 2024 11:49:38 +0100 Subject: [PATCH] make destination optional: As I understand it, `destination` is not required if `renderInPlace` is true --- 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 fd51ed7a8..81d9a7074 100644 --- a/ember-power-select/src/components/power-select.ts +++ b/ember-power-select/src/components/power-select.ts @@ -69,7 +69,7 @@ export interface PowerSelectArgs { matchTriggerWidth?: boolean; options: any[] | PromiseProxy; selected: any | PromiseProxy; - destination: string; + destination?: string; closeOnSelect?: boolean; renderInPlace?: boolean; preventScroll?: boolean;