sf-i-events 1.0.441 → 1.0.442
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/sf-i-events.js +3 -3
- package/sf-i-events.js.map +1 -1
- package/src/sf-i-events.ts +3 -3
package/package.json
CHANGED
package/sf-i-events.js
CHANGED
|
@@ -11829,7 +11829,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
11829
11829
|
this.renderTabs(this.TAB_UPCOMING);
|
|
11830
11830
|
const dateResult = this.calculateStartAndEndDateOfUpcoming(0);
|
|
11831
11831
|
console.log('dateresult', dateResult);
|
|
11832
|
-
this.currentColumnIndex =
|
|
11832
|
+
this.currentColumnIndex = 1 + "";
|
|
11833
11833
|
await this.fetchAndYearlyRenderUserCalendar_2(dateResult.startDate, dateResult.endDate);
|
|
11834
11834
|
this.renderUpcoming();
|
|
11835
11835
|
});
|
|
@@ -11838,7 +11838,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
11838
11838
|
this.renderTabs(this.TAB_THIS);
|
|
11839
11839
|
const dateResult = this.calculateStartAndEndDateOfThis(0);
|
|
11840
11840
|
console.log('dateresult', dateResult);
|
|
11841
|
-
this.currentColumnIndex =
|
|
11841
|
+
this.currentColumnIndex = 1 + "";
|
|
11842
11842
|
await this.fetchAndYearlyRenderUserCalendar_2(dateResult.startDate, dateResult.endDate);
|
|
11843
11843
|
this.renderThis();
|
|
11844
11844
|
});
|
|
@@ -11847,7 +11847,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
11847
11847
|
this.renderTabs(this.TAB_PAST);
|
|
11848
11848
|
const dateResult = this.calculateStartAndEndDateOfPast(0);
|
|
11849
11849
|
console.log('dateresult', dateResult);
|
|
11850
|
-
this.currentColumnIndex =
|
|
11850
|
+
this.currentColumnIndex = 1 + "";
|
|
11851
11851
|
await this.fetchAndYearlyRenderUserCalendar_2(dateResult.startDate, dateResult.endDate);
|
|
11852
11852
|
this.renderPast();
|
|
11853
11853
|
});
|