From 2f53e950c75b8a2ca8482da0dd52ee39aa682271 Mon Sep 17 00:00:00 2001 From: Philippe Marschall Date: Sun, 13 Oct 2024 17:37:06 +0200 Subject: [PATCH] fix typo --- .../instance/seasideWebComponentsJs.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository/Seaside-WebComponents-Core.package/WAWebComponentsLibrary.class/instance/seasideWebComponentsJs.st b/repository/Seaside-WebComponents-Core.package/WAWebComponentsLibrary.class/instance/seasideWebComponentsJs.st index d0407b869..e0a5a48e4 100644 --- a/repository/Seaside-WebComponents-Core.package/WAWebComponentsLibrary.class/instance/seasideWebComponentsJs.st +++ b/repository/Seaside-WebComponents-Core.package/WAWebComponentsLibrary.class/instance/seasideWebComponentsJs.st @@ -37,7 +37,7 @@ seasideWebComponentsJs #load(method, url, data) { const xhr = new XMLHttpRequest(); - xhr.responseType = "text"; // we do not stirp anyhing, just use innerHtml + xhr.responseType = "text"; // we do not strip anyhing, just use innerHtml xhr.addEventListener("load", (event) => { if (xhr.status === 200) { this.#shadowRoot.innerHTML = xhr.response;