minor fix

This commit is contained in:
sanjayk03-dev
2024-08-28 11:52:49 +05:30
parent a056abc1a4
commit 21bb364440
2 changed files with 3 additions and 8 deletions

View File

@@ -40,13 +40,8 @@ module.exports = {
z_slider_variant: " ",
config: "",
selected_date: null,
now: new Date(),
current_date: `${(now.getMonth() + 1).toString().padStart(2, "0")}:${now
.getHours()
.toString()
.padStart(2, "0")}:${now.getFullYear()}`,
selected_hours: `${now.getMinutes()}`,
selected_minutes: `${now.getMinutes()}`,
selected_hours: `${new Date().getMinutes()}`,
selected_minutes: `${new Date().getMinutes()}`,
};
},