@@ -77,11 +77,11 @@ export default {
return {
client: {
client: null,
- site: null
+ site: null,
},
meshagent: null,
allTimezones: [],
- timezone: null
+ timezone: null,
};
},
methods: {
@@ -90,7 +90,7 @@ export default {
const data = {
client: this.client,
timezone: this.timezone,
- initialsetup: true
+ initialsetup: true,
};
axios
.post("/clients/clients/", data)
@@ -122,10 +122,10 @@ export default {
this.allTimezones = Object.freeze(r.data.all_timezones);
this.timezone = r.data.default_time_zone;
});
- }
+ },
},
created() {
this.getSettings();
- }
+ },
};
\ No newline at end of file