Skip to content

Commit

Permalink
missing scrolling handling on required resource error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
ibenitamar committed Oct 3, 2023
1 parent acf9b5c commit 1576a25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,7 @@ export default class MobileAppointmentBookingLanding extends LightningElement {
+error
);
this.timeSlotDateWise = [];
this.allowScrolling();
});
}
})
Expand All @@ -762,6 +763,7 @@ export default class MobileAppointmentBookingLanding extends LightningElement {
"Error While assigning current user as required resource: " +
error
);
this.allowScrolling();
});
});
} else if (saData.error) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ export default class MobileAppointmentBookingRescheduleAppointment extends Light
@api assignToName;

handleConfirmBtnClose(event) {
event.preventDefault();
event.stopPropagation();
const customEvent = new CustomEvent("rescheduleclosewindow");
this.dispatchEvent(customEvent);
}

handleConfirm(event) {
event.preventDefault();
event.stopPropagation();
this.showSpinner = true;

Expand Down

0 comments on commit 1576a25

Please sign in to comment.