We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb9648f commit 2e72021Copy full SHA for 2e72021
packages/devextreme/js/__internal/scheduler/header/m_header.ts
@@ -241,9 +241,10 @@ export class SchedulerHeader extends Widget<HeaderOptions> {
241
firstDayOfWeek: headerOptions.firstDayOfWeek,
242
focusStateEnabled: headerOptions.focusStateEnabled,
243
tabIndex: headerOptions.tabIndex,
244
- onValueChanged: async (e) => {
+ onValueChanged: (e) => {
245
this._updateCurrentDate(e.value);
246
- await this._calendar?.hide();
+ // eslint-disable-next-line @typescript-eslint/no-floating-promises
247
+ this._calendar?.hide();
248
},
249
});
250
0 commit comments