Add to DD.MM.YYYY function

This commit is contained in:
root 2025-03-30 17:09:38 +05:00
parent a870255ba6
commit b9fb6492af

View File

@ -22,6 +22,23 @@ const isToday = timestamp => {
return date.getTime() === today.getTime()
}
const getDdMmYyyy = timestamp => {
const date = new Date(timestamp * 1000)
let day = date.getDate()
let month = date.getMonth() + 1
const year = date.getFullYear()
if (day < 10) {
day = '0' + day;
}
if (month < 10) {
month = '0' + month;
}
return `${day}.${month}.${year}`
}
const getTokens = async authCode => {
try {
const response = await fetch(`https://${DOMAIN}/oauth2/access_token`, {
@ -184,6 +201,9 @@ const getLeadInfo = async id => {
else
leadDiv.style.background = '#ff0'
const date = getDdMmYyyy(lead.closest_task_at)
console.log(date)
leadDiv.classList.remove('loading')
}