From 6b7938912f6d0e1cadb86f0f280e78a95b3b9e9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Mazza?= Date: Sun, 2 Aug 2026 10:14:09 -0300 Subject: [PATCH] Fix stray NBSP indentation in src/htmx.js --- src/htmx.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/htmx.js b/src/htmx.js index 024baa612..ce6f83bfa 100644 --- a/src/htmx.js +++ b/src/htmx.js @@ -1177,7 +1177,7 @@ var htmx = (() => { this.__processScripts(templateElt.content); let swapSpec = this.__parseSwapSpec(this.__attr(templateElt, 'hx-swap') || this.config.defaultSwap); let targets = this.__findAllExt(ctx.sourceElement, targetSelector); -                        for (let target of targets.length ? targets : [null]) { + for (let target of targets.length ? targets : [null]) { tasks.push({ type: 'partial', fragment: templateElt.content.cloneNode(true),