Compare commits

..

No commits in common. "f553cc059a06d7d96838a9a0da690fa42fecd45a" and "554827cc5790be0d615d9e1ce6e9af31aa66dbcb" have entirely different histories.

2 changed files with 1 additions and 3 deletions

View File

@ -67,8 +67,6 @@
packageInfoVariablesDiv.empty();
packageInfoLogsInput.empty();
packageInfoModal.trigger("reset");
});

View File

@ -83,6 +83,6 @@
Date.prototype.toISOStringShort = function() {
const pad = number => String(number).padStart(2, "0");
return `${this.getFullYear()}-${pad(this.getMonth() + 1)}-${pad(this.getDate())} ${pad(this.getHours())}:${pad(this.getMinutes())}:${pad(this.getSeconds())}`;
return `${this.getFullYear()}-${pad(this.getMonth())}-${pad(this.getDate())} ${pad(this.getHours())}:${pad(this.getMinutes())}:${pad(this.getSeconds())}`;
}
</script>