From b0d302d19e23ef365217916530fcf5068f9f6963 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 2 Feb 2020 20:41:42 +0100 Subject: [PATCH] fix special form-data --- Views/FormView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Views/FormView.js b/Views/FormView.js index e135fe5..d908417 100644 --- a/Views/FormView.js +++ b/Views/FormView.js @@ -306,7 +306,7 @@ export class FormView canvas = form.getElementsByTagName('canvas'), external = [].slice.call(document.querySelectorAll(':not(#' + this.id + ') [form=' + this.id + ']')), special = form.querySelectorAll('[data-name]'), - specialExt = document.querySelectorAll('form:not(#' + this.id + ') [data-form=' + this.id + '] [data-name]'), + specialExt = document.querySelectorAll('[data-form=' + this.id + '] [data-name]'), inputLength = inputs.length, externalLength = external.length;