[FIX] DASHBOARD: Fixed dashboard birthday design

This commit is contained in:
Horilla
2024-08-14 22:18:46 +05:30
parent fddda1f383
commit a2b705603c
2 changed files with 13 additions and 13 deletions

View File

@@ -4,7 +4,7 @@ function upcomingBirthdays(response) {
birthdays = response.birthdays;
for (let index = 0; index < birthdays.length; index++) {
activeDotClass = "";
const element = birthdays[index];
let element = birthdays[index];
if (index == 0) {
activeDotClass = "oh-dashboard__events-nav-item--active";
}
@@ -15,17 +15,17 @@ function upcomingBirthdays(response) {
container.append(`
<div class="oh-dashboard__event">
<div class="oh-dasboard__event-photo">
<img
onload="autoSlider()"
src="${element.profile}"
style="
width: 100%;
height: 100%;
object-fit: cover;
"/>
</div>
<div class="oh-dasboard__event-details">
<div class="oh-dasboard__event-photo">
<img
onload="autoSlider()"
src="${element.profile}"
style="
width: 100%;
height: 100%;
object-fit: cover;
"/>
</div>
<div class="oh-dasboard__event-details">
<span class="oh-dashboard__event-title">Birthday</span>
<span class="oh-dashboard__event-main">${element.name}</span>
<span class="oh-dashboard__event-date">${element.dob}, ${element.daysUntilBirthday}</span>

View File

@@ -2900,7 +2900,7 @@ def get_employees_birthday(_):
else:
days_till_birthday = f"In {days_till_birthday} Days"
try:
path = emp.employee_profile.url
path = emp.get_avatar()
except:
path = f"https://ui-avatars.com/api/?\
name={emp.employee_first_name}+{emp.employee_last_name}&background=random"