minor fixes

This commit is contained in:
sanjayk03-dev
2024-09-09 19:23:23 +05:30
parent 4e65135a9a
commit ee9fa4749a
3 changed files with 6 additions and 5 deletions

View File

@@ -45,8 +45,8 @@ module.exports = {
time_zones: [],
is_loading_time: false,
selected_date: null,
selected_hours: this.current_time == null ? "00" : this.current_time.getHours(),
selected_minutes: this.current_time == null ? "00" : this.current_time.getMinutes(),
selected_hours: "",
selected_minutes: "",
selected_meridiem: "AM",
};
},
@@ -105,6 +105,7 @@ module.exports = {
if (time_zone) {
this.current_timezone = time_zone[1];
this.selected_timezone = time_zone[1];
}
}
} catch (error) {