This commit is contained in:
BlasenhauerJ 2022-11-18 16:24:17 +01:00
parent fb2e41c11e
commit 7aac0c352e
2 changed files with 6 additions and 2 deletions

View File

@ -1227,6 +1227,10 @@ h6 {
min-height: 85vh;
}
.min-h-10 {
min-height: 2.5rem;
}
.w-full {
width: 100%;
}

View File

@ -194,10 +194,10 @@ class FetchLogs {
this.instanceName = this.instance.textContent;
if (!this.instanceName || this.instanceName.trim() === "none") return false;
this.fromDate = this.fromDateInp.valueAsNumber
? this.fromDateInp.valueAsNumber
? Math.round(this.fromDateInp.valueAsNumber / 1000)
: Math.round(Date.now() / 1000) - 86400;
this.toDate = this.toDateInp.valueAsNumber
? this.toDateInp.valueAsNumber
? Math.round(this.toDateInp.valueAsNumber / 1000)
: false;
this.updateDelay =
this.updateDelayInp.value * 1000 ? this.updateDelayInp.value : 2000;