Reformat files with new linter
All changes should be whitespace, and were done using npm run-script
lint.
Change-Id: I943c6b435c5c872841af5affc1e89910468b5ca6
Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/src/views/Settings/DateTime/DateTime.vue b/src/views/Settings/DateTime/DateTime.vue
index f5e063d..a3fec36 100644
--- a/src/views/Settings/DateTime/DateTime.vue
+++ b/src/views/Settings/DateTime/DateTime.vue
@@ -297,7 +297,7 @@
},
bmcTime() {
this.form.manual.date = this.$options.filters.formatDate(
- this.$store.getters['global/bmcTime']
+ this.$store.getters['global/bmcTime'],
);
this.form.manual.time = this.$options.filters
.formatTime(this.$store.getters['global/bmcTime'])
@@ -408,7 +408,7 @@
parseInt(datesArray[1]) - 1, // User input month
datesArray[2], // User input day
timeArray[0], // User input hour
- timeArray[1] // User input minute
+ timeArray[1], // User input minute
);
return new Date(utcDate);
},