Fix typo in select.ts

This commit is contained in:
Jesper Noordsij 2024-05-29 12:07:48 +02:00 committed by GitHub
parent dc2ba2a54f
commit b157a877ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -212,7 +212,7 @@ export abstract class Select extends selectBaseClass {
/**
* Returns an array of selected options.
*
* NOTE: md-select only suppoprts single selection.
* NOTE: md-select only supports single selection.
*/
get selectedOptions() {
return (this.getSelectedOptions() ?? []).map(([option]) => option);