sf-i-events 1.0.681 → 1.0.682
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 +1 -1
- package/src/sf-i-events.ts +1 -1
package/package.json
CHANGED
package/sf-i-events.js
CHANGED
|
@@ -6327,7 +6327,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
6327
6327
|
};
|
|
6328
6328
|
this.fetchEventDetails = async (listEvent, mmddyyyy, currentColumnButton) => {
|
|
6329
6329
|
console.log('listEvent', listEvent, listEvent.id);
|
|
6330
|
-
let url = "https://" + this.apiId + "/
|
|
6330
|
+
let url = "https://" + this.apiId + "/getalleventdetails1";
|
|
6331
6331
|
//console.log('fetch calendar url', url);
|
|
6332
6332
|
let urlBody = { "projectid": this.projectId, "userprofileid": this.userProfileId, "role": this.myRole, "eventid": listEvent.id, "entityid": listEvent.entityid, "locationid": listEvent.locationid, "mmddyyyy": mmddyyyy, "year": this.calendarStartYYYY };
|
|
6333
6333
|
//console.log('urlbody', urlBody);
|
package/src/sf-i-events.ts
CHANGED
|
@@ -9526,7 +9526,7 @@ export class SfIEvents extends LitElement {
|
|
|
9526
9526
|
|
|
9527
9527
|
fetchEventDetails = async (listEvent: any, mmddyyyy: any, currentColumnButton: HTMLButtonElement | null) => {
|
|
9528
9528
|
console.log('listEvent', listEvent, listEvent.id)
|
|
9529
|
-
let url = "https://"+this.apiId+"/
|
|
9529
|
+
let url = "https://"+this.apiId+"/getalleventdetails1";
|
|
9530
9530
|
|
|
9531
9531
|
//console.log('fetch calendar url', url);
|
|
9532
9532
|
let urlBody :any = {"projectid": this.projectId, "userprofileid": this.userProfileId, "role": this.myRole, "eventid": listEvent.id, "entityid": listEvent.entityid, "locationid": listEvent.locationid, "mmddyyyy": mmddyyyy, "year": this.calendarStartYYYY};
|