Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ describe('Appointment popup form', () => {

scheduler.showAppointmentPopup();

const appointmentForm = scheduler._appointmentForm.dxForm;
const appointmentForm = (scheduler as any).appointmentForm.dxForm;
const startDate = appointmentForm.getEditor('startDate');
const toolbarItemsBefore = startDate._getPopupToolbarItems();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export class CompactAppointmentsHelper {

_createTemplate(count, isCompact) {
this._initButtonTemplate(count, isCompact);
return this.instance._getAppointmentTemplate('appointmentCollectorTemplate');
return this.instance.getAppointmentTemplate('appointmentCollectorTemplate');
}

_initButtonTemplate(count, isCompact) {
Expand Down
Loading
Loading