mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
fix change order and agenda list
This commit is contained in:
@@ -216,7 +216,6 @@
|
||||
<div class="height-100">
|
||||
<div class="timeline-container height-100 d-flex pt-10 pl-20 filter-{{segment}} flex-column" >
|
||||
|
||||
|
||||
<div class="timeline-date align-center" *ngIf="isSelectedDayHasEvent && hasEventToday">
|
||||
<span >Hoje, </span> {{ timelineDate }}
|
||||
</div>
|
||||
@@ -231,7 +230,7 @@
|
||||
|
||||
<div *ngFor="let day of month.days; let i = index " class="EventListBox-container" >
|
||||
|
||||
<div class="day" *ngIf="!(i == 0 && isSelectedDayHasEvent)" >
|
||||
<div class="day" *ngIf="!(i == 0 && isSelectedDayHasEvent) || !hasEventToday" >
|
||||
|
||||
{{ day.daysInfo.dayName }} <div style="text-transform: capitalize; display: inline;">{{month.monthInfo.monthName}}</div>
|
||||
</div>
|
||||
|
||||
@@ -283,6 +283,7 @@ export class AgendaPage implements OnInit {
|
||||
|
||||
|
||||
this.calendar.currentDate = new Date();
|
||||
//this.onCurrentChanged(new Date())
|
||||
|
||||
try {
|
||||
this.myCal.update();
|
||||
@@ -290,7 +291,7 @@ export class AgendaPage implements OnInit {
|
||||
this.onDropDownScrollWeal()
|
||||
} catch (e) { }
|
||||
|
||||
this.reloadCalendar();
|
||||
//this.reloadCalendar();
|
||||
this.updateEventListBox()
|
||||
|
||||
realoadCounter++;
|
||||
@@ -449,11 +450,6 @@ export class AgendaPage implements OnInit {
|
||||
}
|
||||
|
||||
|
||||
onTimeSelected = (ev: { selectedTime: Date, events: any[] }) => {
|
||||
this.eventSelectedDate2 = ev.selectedTime;
|
||||
}
|
||||
|
||||
|
||||
currentMoth = {
|
||||
rangeStartDate: null,
|
||||
rangeEndDate: null
|
||||
|
||||
Reference in New Issue
Block a user