We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d4431c commit 212cd77Copy full SHA for 212cd77
packages/ember-toucan-core/src/components/form/controls/combobox.ts
@@ -191,21 +191,6 @@ export default class ToucanFormComboboxControlComponent<
191
return this.filteredOptions || this.args?.options;
192
}
193
194
- /**
195
- * The internal currently selected item.
196
- */
197
- get selected(): string | undefined {
198
- let { optionKey, selected } = this.args;
199
-
200
- if (!selected) {
201
- return undefined;
202
- }
203
204
- return (
205
- typeof selected === 'object' && optionKey ? selected[optionKey] : selected
206
- ) as string;
207
208
209
/**
210
* Attempts to scroll the active or newly highlighted item into view for the user.
211
*/
0 commit comments