Skip to content

Commit e9adca6

Browse files
committed
Merge pull request scala-js#78 from tindzk/select-fix
HTMLSelectElement: Fix return type of ``options``
2 parents f9b1ef4 + 43f1cdf commit e9adca6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/org/scalajs/dom/Html.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ class HTMLSelectElement extends HTMLElement {
855855
*
856856
* MDN
857857
*/
858-
val options: HTMLSelectElement = js.native
858+
val options: js.Array[HTMLSelectElement] = js.native
859859
/**
860860
* The value of this form control, that is, of the first selected option.
861861
*

0 commit comments

Comments
 (0)