diff --git a/resources/assets/js/forms.js b/resources/assets/js/forms.js index 840b29fd..8eab91fe 100644 --- a/resources/assets/js/forms.js +++ b/resources/assets/js/forms.js @@ -34,7 +34,7 @@ ready(() => { const triggerChange = (element) => { const changeEvent = new Event('change'); element.dispatchEvent(changeEvent); - } + }; /** * Sets the values of the input fields with the IDs to from/to: @@ -98,7 +98,7 @@ ready(() => { if (to < from) { setInput(to, from); - } else{ + } else { setInput(from, to); } };