File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
packages/devextreme/js/__internal/scheduler/workspaces Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ class SchedulerAgenda extends WorkSpace {
160160
161161 _recalculateAgenda ( rows ) {
162162 let cellTemplates = [ ] ;
163- this . _cleanView ( ) ;
163+ this . cleanView ( ) ;
164164
165165 if ( this . _rowsIsEmpty ( rows ) ) {
166166 this . _renderNoData ( ) ;
@@ -304,7 +304,7 @@ class SchedulerAgenda extends WorkSpace {
304304 } ;
305305 }
306306
307- _cleanView ( ) {
307+ cleanView ( ) {
308308 this . _$dateTable . empty ( ) ;
309309 this . _$timePanel . empty ( ) ;
310310
Original file line number Diff line number Diff line change @@ -2236,7 +2236,7 @@ class SchedulerWorkSpace extends Widget<WorkspaceOptionsInternal> {
22362236 // We do not need these methods in renovation
22372237 // --------------
22382238
2239- private isRenderHeaderPanelEmptyCell ( ) {
2239+ protected isRenderHeaderPanelEmptyCell ( ) {
22402240 return this . isVerticalGroupedWorkSpace ( ) ;
22412241 }
22422242
Original file line number Diff line number Diff line change @@ -197,8 +197,8 @@ class SchedulerWorkSpaceIndicator extends SchedulerWorkSpace {
197197 return cellClass ;
198198 }
199199
200- _cleanView ( ) {
201- super . _cleanView ( ) ;
200+ cleanView ( ) {
201+ super . cleanView ( ) ;
202202
203203 this . _cleanDateTimeIndicator ( ) ;
204204 }
You can’t perform that action at this time.
0 commit comments