Skip to content

Commit f3acfa0

Browse files
authored
Scheduler: hotfix appointment template not exist node error (DevExpress#29702)
1 parent f1274e8 commit f3acfa0

File tree

1 file changed

+2
-2
lines changed
  • packages/devextreme/js/__internal/scheduler/appointments/appointment

1 file changed

+2
-2
lines changed

packages/devextreme/js/__internal/scheduler/appointments/appointment/m_appointment.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ export class Appointment extends DOMComponent<AppointmentProperties> {
198198

199199
$element.attr('aria-describedby', id);
200200
$element.find(`.${APPOINTMENT_CONTENT_CLASSES.ARIA_DESCRIPTION}`)
201-
.html(text)
202-
.attr('id', id);
201+
?.text(text)
202+
?.attr('id', id);
203203
}
204204
});
205205
}

0 commit comments

Comments
 (0)