Fix frontend formatting

This commit is contained in:
Michael Weimann 2023-01-03 20:20:46 +01:00
parent 30f50dab6d
commit 1d1618836b
No known key found for this signature in database
GPG Key ID: 34F0524D4DA694A1
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
};