From dd4728e880fbe09899f77a438c38ff2cc6aaed0f Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 6 May 2020 21:28:23 +0200 Subject: [PATCH] phpcs fixes --- UI/Component/Form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/Component/Form.js b/UI/Component/Form.js index c82e5a3..6aba967 100644 --- a/UI/Component/Form.js +++ b/UI/Component/Form.js @@ -1069,7 +1069,7 @@ export class Form length = values.length; for (let i = 0; i < length; ++i) { const matches = document.getElementById(formId).querySelectorAll('[data-tpl-value="' + values[i].getAttribute('data-tpl-value') + '"'); - const path = values[i].hasAttribute('data-tpl-value-path') ? values[i].getAttribute('data-tpl-value-path') : null; + const path = values[i].hasAttribute('data-tpl-value-path') ? values[i].getAttribute('data-tpl-value-path') : null; const matchLength = matches.length; for (let c = 0; c < matchLength; ++c) {