sf-i-events 1.0.704 → 1.0.705
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 +4 -3
- package/src/sf-i-events.ts +4 -3
package/package.json
CHANGED
package/sf-i-events.js
CHANGED
|
@@ -7222,6 +7222,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
7222
7222
|
// this.clearMessages();
|
|
7223
7223
|
}
|
|
7224
7224
|
await this.uploadReportsBulk(bulkBody);
|
|
7225
|
+
this.fetchBulkReportingData();
|
|
7225
7226
|
if (bulkBodyReview.length > 0) {
|
|
7226
7227
|
await this.uploadReviewsBulk(bulkBodyReview);
|
|
7227
7228
|
}
|
|
@@ -7252,9 +7253,9 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
7252
7253
|
}
|
|
7253
7254
|
else {
|
|
7254
7255
|
this.renderAppropriateStream(this.sdate, this.edate, true);
|
|
7255
|
-
if
|
|
7256
|
-
|
|
7257
|
-
}
|
|
7256
|
+
// if(this.selectedItemIds.length > 0) {
|
|
7257
|
+
// this.fetchBulkReportingData();
|
|
7258
|
+
// }
|
|
7258
7259
|
// if(currentColumnButton != null) {
|
|
7259
7260
|
// currentColumnButton.click();
|
|
7260
7261
|
// }
|
package/src/sf-i-events.ts
CHANGED
|
@@ -10642,6 +10642,7 @@ export class SfIEvents extends LitElement {
|
|
|
10642
10642
|
}
|
|
10643
10643
|
|
|
10644
10644
|
await this.uploadReportsBulk(bulkBody);
|
|
10645
|
+
this.fetchBulkReportingData();
|
|
10645
10646
|
if(bulkBodyReview.length > 0){
|
|
10646
10647
|
await this.uploadReviewsBulk(bulkBodyReview)
|
|
10647
10648
|
}
|
|
@@ -10673,9 +10674,9 @@ export class SfIEvents extends LitElement {
|
|
|
10673
10674
|
this.processFindSelection((this._SfFindContainer as HTMLDivElement), searchString);
|
|
10674
10675
|
} else {
|
|
10675
10676
|
this.renderAppropriateStream(this.sdate,this.edate,true)
|
|
10676
|
-
if(this.selectedItemIds.length > 0) {
|
|
10677
|
-
|
|
10678
|
-
}
|
|
10677
|
+
// if(this.selectedItemIds.length > 0) {
|
|
10678
|
+
// this.fetchBulkReportingData();
|
|
10679
|
+
// }
|
|
10679
10680
|
// if(currentColumnButton != null) {
|
|
10680
10681
|
// currentColumnButton.click();
|
|
10681
10682
|
// }
|