diff --git a/src/components/panels/GcodefilesPanel.vue b/src/components/panels/GcodefilesPanel.vue index 084d55ce7..ccdf50383 100644 --- a/src/components/panels/GcodefilesPanel.vue +++ b/src/components/panels/GcodefilesPanel.vue @@ -1322,7 +1322,7 @@ export default class GcodefilesPanel extends Mixins(BaseMixin, ControlMixin) { await addElementToItems('gcodes/' + this.currentPath, this.selectedFiles) const date = new Date() - const timestamp = `${date.getFullYear()}${date.getMonth()}${date.getDay()}-${date.getHours()}${date.getMinutes()}${date.getSeconds()}` + const timestamp = `${date.getFullYear()}${date.getMonth()}${date.getDate()}-${date.getHours()}${date.getMinutes()}${date.getSeconds()}` this.$socket.emit( 'server.files.zip', diff --git a/src/components/panels/Machine/ConfigFilesPanel.vue b/src/components/panels/Machine/ConfigFilesPanel.vue index b0463caf0..135716360 100644 --- a/src/components/panels/Machine/ConfigFilesPanel.vue +++ b/src/components/panels/Machine/ConfigFilesPanel.vue @@ -1050,7 +1050,7 @@ export default class ConfigFilesPanel extends Mixins(BaseMixin) { const date = new Date() const month = (date.getMonth() + 1).toString().padStart(2, '0') - const day = date.getDay().toString().padStart(2, '0') + const day = date.getDate().toString().padStart(2, '0') const hours = date.getHours().toString().padStart(2, '0') const minutes = date.getMinutes().toString().padStart(2, '0') const seconds = date.getSeconds().toString().padStart(2, '0') diff --git a/src/components/panels/Machine/UpdatePanel/GitCommitsList.vue b/src/components/panels/Machine/UpdatePanel/GitCommitsList.vue index cf1624b40..34647928d 100644 --- a/src/components/panels/Machine/UpdatePanel/GitCommitsList.vue +++ b/src/components/panels/Machine/UpdatePanel/GitCommitsList.vue @@ -83,7 +83,7 @@ export default class GitCommitsList extends Mixins(BaseMixin) { if ( commitDate.getFullYear() !== lastCommitDate.getFullYear() || commitDate.getMonth() !== lastCommitDate.getMonth() || - commitDate.getDay() !== lastCommitDate.getDay() + commitDate.getDate() !== lastCommitDate.getDate() ) { output.push({ date: commitDate, diff --git a/src/components/panels/Timelapse/TimelapseFilesPanel.vue b/src/components/panels/Timelapse/TimelapseFilesPanel.vue index bf9313287..06456d7f5 100644 --- a/src/components/panels/Timelapse/TimelapseFilesPanel.vue +++ b/src/components/panels/Timelapse/TimelapseFilesPanel.vue @@ -746,7 +746,7 @@ export default class TimelapseFilesPanel extends Mixins(BaseMixin) { await addElementToItems(this.currentPath, this.selectedFiles) const date = new Date() - const timestamp = `${date.getFullYear()}${date.getMonth()}${date.getDay()}-${date.getHours()}${date.getMinutes()}${date.getSeconds()}` + const timestamp = `${date.getFullYear()}${date.getMonth()}${date.getDate()}-${date.getHours()}${date.getMinutes()}${date.getSeconds()}` this.$socket.emit( 'server.files.zip',