From d804eafe97ce151946741adc2d2b0407e6d440b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Schleusner?= Date: Tue, 20 Dec 2022 23:31:24 +0100 Subject: [PATCH] #664@patch: Fixes error due to typo in import path. --- packages/happy-dom/src/window/IWindow.ts | 2 +- packages/happy-dom/src/window/Window.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/happy-dom/src/window/IWindow.ts b/packages/happy-dom/src/window/IWindow.ts index 558b8daa8..3cb9eed83 100644 --- a/packages/happy-dom/src/window/IWindow.ts +++ b/packages/happy-dom/src/window/IWindow.ts @@ -13,7 +13,7 @@ import HTMLFormElement from '../nodes/html-form-element/HTMLFormElement'; import HTMLElement from '../nodes/html-element/HTMLElement'; import HTMLUnknownElement from '../nodes/html-unknown-element/HTMLUnknownElement'; import HTMLInputElement from '../nodes/html-input-element/HTMLInputElement'; -import HTMLSelectElement from '../nodes/html-input-element/HTMLSelectElement'; +import HTMLSelectElement from '../nodes/html-select-element/HTMLSelectElement'; import HTMLTextAreaElement from '../nodes/html-text-area-element/HTMLTextAreaElement'; import HTMLLinkElement from '../nodes/html-link-element/HTMLLinkElement'; import HTMLStyleElement from '../nodes/html-style-element/HTMLStyleElement'; diff --git a/packages/happy-dom/src/window/Window.ts b/packages/happy-dom/src/window/Window.ts index 7e1f08aa9..ac232fb9a 100644 --- a/packages/happy-dom/src/window/Window.ts +++ b/packages/happy-dom/src/window/Window.ts @@ -14,7 +14,7 @@ import HTMLFormElement from '../nodes/html-form-element/HTMLFormElement'; import HTMLElement from '../nodes/html-element/HTMLElement'; import HTMLUnknownElement from '../nodes/html-unknown-element/HTMLUnknownElement'; import HTMLInputElement from '../nodes/html-input-element/HTMLInputElement'; -import HTMLSelectElement from '../nodes/html-input-element/HTMLSelectElement'; +import HTMLSelectElement from '../nodes/html-select-element/HTMLSelectElement'; import HTMLTextAreaElement from '../nodes/html-text-area-element/HTMLTextAreaElement'; import HTMLLinkElement from '../nodes/html-link-element/HTMLLinkElement'; import HTMLStyleElement from '../nodes/html-style-element/HTMLStyleElement';